diff options
author | flipk <flipk@cvs.openbsd.org> | 1997-04-19 20:07:25 +0000 |
---|---|---|
committer | flipk <flipk@cvs.openbsd.org> | 1997-04-19 20:07:25 +0000 |
commit | 0553f8415c564c7ec784451a67eb17c4e39bb1b2 (patch) | |
tree | cd62bb591f4ec218781e2dc4db590716eda692fe /sbin/mount_cd9660/mount_cd9660.c | |
parent | d730d99d6a9c4e5a6b9302731747bbac397c5899 (diff) |
replace -r (disable Rockridge extensions) with -R ..
"-r" for all "mount*" is reserved for read-only flag.
Diffstat (limited to 'sbin/mount_cd9660/mount_cd9660.c')
-rw-r--r-- | sbin/mount_cd9660/mount_cd9660.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/mount_cd9660/mount_cd9660.c b/sbin/mount_cd9660/mount_cd9660.c index 63ec59857f8..a53dc4d21dd 100644 --- a/sbin/mount_cd9660/mount_cd9660.c +++ b/sbin/mount_cd9660/mount_cd9660.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount_cd9660.c,v 1.4 1997/01/15 23:41:17 millert Exp $ */ +/* $OpenBSD: mount_cd9660.c,v 1.5 1997/04/19 20:07:24 flipk Exp $ */ /* $NetBSD: mount_cd9660.c,v 1.3 1996/04/13 01:31:08 jtc Exp $ */ /* @@ -49,7 +49,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)mount_cd9660.c 8.4 (Berkeley) 3/27/94"; #else -static char rcsid[] = "$OpenBSD: mount_cd9660.c,v 1.4 1997/01/15 23:41:17 millert Exp $"; +static char rcsid[] = "$OpenBSD: mount_cd9660.c,v 1.5 1997/04/19 20:07:24 flipk Exp $"; #endif #endif /* not lint */ @@ -83,7 +83,7 @@ main(argc, argv) char *dev, *dir; mntflags = opts = 0; - while ((ch = getopt(argc, argv, "ego:r")) != -1) + while ((ch = getopt(argc, argv, "ego:R")) != -1) switch (ch) { case 'e': opts |= ISOFSMNT_EXTATT; @@ -94,7 +94,7 @@ main(argc, argv) case 'o': getmntopts(optarg, mopts, &mntflags); break; - case 'r': + case 'R': opts |= ISOFSMNT_NORRIP; break; case '?': |