Module Name:    src
Committed By:   christos
Date:           Wed Mar 15 15:33:54 UTC 2017

Modified Files:
        src/usr.sbin/makefs: cd9660.c

Log Message:
Change duplicate 'D' option to 'm'. From Ed Maste @ FreeBSD


To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 src/usr.sbin/makefs/cd9660.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.sbin/makefs/cd9660.c
diff -u src/usr.sbin/makefs/cd9660.c:1.54 src/usr.sbin/makefs/cd9660.c:1.55
--- src/usr.sbin/makefs/cd9660.c:1.54	Tue Jan 24 06:22:43 2017
+++ src/usr.sbin/makefs/cd9660.c	Wed Mar 15 11:33:54 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: cd9660.c,v 1.54 2017/01/24 11:22:43 nonaka Exp $	*/
+/*	$NetBSD: cd9660.c,v 1.55 2017/03/15 15:33:54 christos Exp $	*/
 
 /*
  * Copyright (c) 2005 Daniel Watt, Walter Deignan, Ryan Gabrys, Alan
@@ -103,7 +103,7 @@
 
 #include <sys/cdefs.h>
 #if defined(__RCSID) && !defined(__lint)
-__RCSID("$NetBSD: cd9660.c,v 1.54 2017/01/24 11:22:43 nonaka Exp $");
+__RCSID("$NetBSD: cd9660.c,v 1.55 2017/03/15 15:33:54 christos Exp $");
 #endif  /* !__lint */
 
 #include <string.h>
@@ -298,7 +298,7 @@ cd9660_prep_opts(fsinfo_t *fsopts)
 		    "Allow 37 char filenames (unimplemented)"),
 	        OPT_BOOL('i', "allow-illegal-chars", allow_illegal_chars,
 		    "Allow illegal characters in filenames"),
-	        OPT_BOOL('D', "allow-multidot", allow_multidot,
+	        OPT_BOOL('m', "allow-multidot", allow_multidot,
 		    "Allow multiple periods in filenames"),
 	        OPT_BOOL('o', "omit-trailing-period", omit_trailing_period,
 		    "Omit trailing periods in filenames"),

Reply via email to