make async, sync match between .h and man page
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Mon, 28 Mar 1994 06:00:45 +0000 (22:00 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Mon, 28 Mar 1994 06:00:45 +0000 (22:00 -0800)
SCCS-vsn: sbin/mount/mntopts.h 8.2
SCCS-vsn: sbin/mount/mount.8 8.6

usr/src/sbin/mount/mntopts.h
usr/src/sbin/mount/mount.8

index 43155a6..a60b8b3 100644 (file)
@@ -4,7 +4,7 @@
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)mntopts.h   8.1 (Berkeley) %G%
+ *     @(#)mntopts.h   8.2 (Berkeley) %G%
  */
 
 struct mntopt {
  */
 
 struct mntopt {
@@ -14,21 +14,21 @@ struct mntopt {
 };
 
 /* User-visible MNT_ flags. */
 };
 
 /* User-visible MNT_ flags. */
-#define MOPT_ASYNC             { "async",       0, MNT_ASYNC }
-#define MOPT_NODEV             { "dev",         1, MNT_NODEV }
-#define MOPT_NOEXEC            { "exec",        1, MNT_NOEXEC }
-#define MOPT_NOSUID            { "suid",        1, MNT_NOSUID }
-#define MOPT_RDONLY            { "rdonly",      0, MNT_RDONLY }
-#define MOPT_SYNCHRONOUS       { "synchronous", 0, MNT_SYNCHRONOUS }
-#define MOPT_UNION             { "union",       0, MNT_UNION }
+#define MOPT_ASYNC             { "async",      0, MNT_ASYNC }
+#define MOPT_NODEV             { "dev",        1, MNT_NODEV }
+#define MOPT_NOEXEC            { "exec",       1, MNT_NOEXEC }
+#define MOPT_NOSUID            { "suid",       1, MNT_NOSUID }
+#define MOPT_RDONLY            { "rdonly",     0, MNT_RDONLY }
+#define MOPT_SYNC              { "sync",       0, MNT_SYNCHRONOUS }
+#define MOPT_UNION             { "union",      0, MNT_UNION }
 
 /* Control flags. */
 
 /* Control flags. */
-#define MOPT_FORCE             { "exec",        1, MNT_FORCE }
-#define MOPT_UPDATE            { "update",      0, MNT_UPDATE }
+#define MOPT_FORCE             { "exec",       1, MNT_FORCE }
+#define MOPT_UPDATE            { "update",     0, MNT_UPDATE }
 
 /* Support for old-style "ro", "rw" flags. */
 
 /* Support for old-style "ro", "rw" flags. */
-#define MOPT_RO                        { "ro",          0, MNT_RDONLY }
-#define MOPT_RW                        { "rw",          1, MNT_RDONLY }
+#define MOPT_RO                        { "ro",         0, MNT_RDONLY }
+#define MOPT_RW                        { "rw",         1, MNT_RDONLY }
 
 #define MOPT_FSTAB_COMPAT                                              \
        MOPT_RO,                                                        \
 
 #define MOPT_FSTAB_COMPAT                                              \
        MOPT_RO,                                                        \
index f19082c..622bfa5 100644 (file)
@@ -3,7 +3,7 @@
 .\"
 .\" %sccs.include.redist.roff%
 .\"
 .\"
 .\" %sccs.include.redist.roff%
 .\"
-.\"     @(#)mount.8    8.5 (Berkeley) %G%
+.\"     @(#)mount.8    8.6 (Berkeley) %G%
 .\"
 .Dd 
 .Dt MOUNT 8
 .\"
 .Dd 
 .Dt MOUNT 8
@@ -65,7 +65,7 @@ Options are specified with a
 flag followed by a comma separated string of options.
 The following options are available:
 .Bl -tag -width indent
 flag followed by a comma separated string of options.
 The following options are available:
 .Bl -tag -width indent
-.It asynchronous
+.It async
 All
 .Tn I/O
 to the file system should be done asynchronously.
 All
 .Tn I/O
 to the file system should be done asynchronously.
@@ -93,7 +93,7 @@ Do not allow set-user-identifier or set-group-identifier bits to take effect.
 The same as
 .Fl f ;
 mount the file system read-only (even the super-user may not write it).
 The same as
 .Fl f ;
 mount the file system read-only (even the super-user may not write it).
-.It synchronous
+.It sync
 All
 .Tn I/O
 to the file system should be done synchronously.
 All
 .Tn I/O
 to the file system should be done synchronously.