diff options
author | Simon Chopin <chopin.simon@gmail.com> | 2020-01-23 16:45:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-23 16:45:55 +0100 |
commit | ed17d1684f3956cc9ca233ac4e54d460a4344523 (patch) | |
tree | 6628313e9293583b916f00c6c2ee104c65aff377 /src/sys | |
parent | 90f9301641463f211be7f3599f9a9bdd5e9f03b4 (diff) | |
download | nix-ed17d1684f3956cc9ca233ac4e54d460a4344523.zip |
ioctl: Fix broken link to the kernel documentation
The file documenting ioctl number assignment in the Linux kernel has been converted to ReStructuredText (see https://lwn.net/Articles/705224/ for some background), the file extension has naturally changed.
Diffstat (limited to 'src/sys')
-rw-r--r-- | src/sys/ioctl/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/ioctl/mod.rs b/src/sys/ioctl/mod.rs index 4513bf87..2837233f 100644 --- a/src/sys/ioctl/mod.rs +++ b/src/sys/ioctl/mod.rs @@ -29,7 +29,7 @@ //! Historically `ioctl` numbers were arbitrary hard-coded values. In Linux (before 2.6) and some //! unices this has changed to a more-ordered system where the ioctl numbers are partitioned into //! subcomponents (For linux this is documented in -//! [`Documentation/ioctl/ioctl-number.txt`](http://elixir.free-electrons.com/linux/latest/source/Documentation/ioctl/ioctl-number.txt)): +//! [`Documentation/ioctl/ioctl-number.rst`](http://elixir.free-electrons.com/linux/latest/source/Documentation/ioctl/ioctl-number.rst)): //! //! * Number: The actual ioctl ID //! * Type: A grouping of ioctls for a common purpose or driver |