diff options
author | mux <mux@FreeBSD.org> | 2002-03-26 16:32:46 +0000 |
---|---|---|
committer | mux <mux@FreeBSD.org> | 2002-03-26 16:32:46 +0000 |
commit | 177e1edc7c275947adf13cccd55664478f98d2b8 (patch) | |
tree | 344b52aa046c2b626b4249e8c01b83632c11caa4 | |
parent | f6da61bcc93f7a3dfe3b92947914827a66b64a24 (diff) | |
download | FreeBSD-src-177e1edc7c275947adf13cccd55664478f98d2b8.zip FreeBSD-src-177e1edc7c275947adf13cccd55664478f98d2b8.tar.gz |
Commit the good prototype for nmount(2).
Reviewed by: phk
-rw-r--r-- | sys/sys/mount.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/mount.h b/sys/sys/mount.h index 858a451..7cb8031 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -506,7 +506,7 @@ int fstatfs(int, struct statfs *); int getfh(const char *, fhandle_t *); int getfsstat(struct statfs *, long, int); int getmntinfo(struct statfs **, int); -int nmount(const char *, const char *, int, struct iovec *, int); +int nmount(struct iovec *, unsigned int, int); int mount(const char *, const char *, int, void *); int statfs(const char *, struct statfs *); int unmount(const char *, int); |