summaryrefslogtreecommitdiff
path: root/src/unistd.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd.rs')
-rw-r--r--src/unistd.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unistd.rs b/src/unistd.rs
index 5af84c93..d93355d6 100644
--- a/src/unistd.rs
+++ b/src/unistd.rs
@@ -54,11 +54,11 @@ mod ffi {
pub fn gethostname(name: *mut c_char, len: size_t) -> c_int;
// gets the hostname
- // doc: http://man7.org/linux/man-pages/man2/gethostname.2.html
+ // doc: http://man7.org/linux/man-pages/man2/sethostname.2.html
pub fn sethostname(name: *const c_char, len: size_t) -> c_int;
// change root directory
- // doc: http://man7.org/linux/man-pages/man2/gethostname.2.html
+ // doc: http://man7.org/linux/man-pages/man2/chroot.2.html
pub fn chroot(path: *const c_char) -> c_int;
}
}