Wed Jan 23 21:42:23 2013 UTC ()
return the bit of the option set, so that others can act on it.


(christos)
diff -r1.51 -r1.52 src/usr.sbin/makefs/ffs.c
diff -r1.37 -r1.38 src/usr.sbin/makefs/makefs.c
diff -r1.2 -r1.3 src/usr.sbin/makefs/msdos.c

cvs diff -r1.51 -r1.52 src/usr.sbin/makefs/ffs.c (expand / switch to context diff)
--- src/usr.sbin/makefs/ffs.c 2013/01/23 21:32:32 1.51
+++ src/usr.sbin/makefs/ffs.c 2013/01/23 21:42:22 1.52
@@ -1,4 +1,4 @@
-/*	$NetBSD: ffs.c,v 1.51 2013/01/23 21:32:32 christos Exp $	*/
+/*	$NetBSD: ffs.c,v 1.52 2013/01/23 21:42:22 christos Exp $	*/
 
 /*
  * Copyright (c) 2001 Wasabi Systems, Inc.
@@ -71,7 +71,7 @@
 
 #include <sys/cdefs.h>
 #if defined(__RCSID) && !defined(__lint)
-__RCSID("$NetBSD: ffs.c,v 1.51 2013/01/23 21:32:32 christos Exp $");
+__RCSID("$NetBSD: ffs.c,v 1.52 2013/01/23 21:42:22 christos Exp $");
 #endif	/* !__lint */
 
 #include <sys/param.h>
@@ -231,6 +231,9 @@
 
 	for (i = 0; ffs_options[i].name && (1 << i) != rv; i++)
 		continue;
+
+	if (ffs_options[i].name == NULL)
+		abort();
 
 	if (strcmp(ffs_options[i].name, "optimization") == 0) {
 		if (strcmp(optimization, "time") == 0) {

cvs diff -r1.37 -r1.38 src/usr.sbin/makefs/makefs.c (expand / switch to context diff)
--- src/usr.sbin/makefs/makefs.c 2013/01/23 21:32:32 1.37
+++ src/usr.sbin/makefs/makefs.c 2013/01/23 21:42:22 1.38
@@ -1,4 +1,4 @@
-/*	$NetBSD: makefs.c,v 1.37 2013/01/23 21:32:32 christos Exp $	*/
+/*	$NetBSD: makefs.c,v 1.38 2013/01/23 21:42:22 christos Exp $	*/
 
 /*
  * Copyright (c) 2001-2003 Wasabi Systems, Inc.
@@ -41,7 +41,7 @@
 
 #include <sys/cdefs.h>
 #if defined(__RCSID) && !defined(__lint)
-__RCSID("$NetBSD: makefs.c,v 1.37 2013/01/23 21:32:32 christos Exp $");
+__RCSID("$NetBSD: makefs.c,v 1.38 2013/01/23 21:42:22 christos Exp $");
 #endif	/* !__lint */
 
 #include <assert.h>
@@ -367,7 +367,7 @@
 			    val);
 			return 0;
 		}
-		return 1;
+		return 1 << i;
 	}
 	warnx("Unknown option `%s'", var);
 	return (0);

cvs diff -r1.2 -r1.3 src/usr.sbin/makefs/msdos.c (expand / switch to context diff)
--- src/usr.sbin/makefs/msdos.c 2013/01/23 21:32:32 1.2
+++ src/usr.sbin/makefs/msdos.c 2013/01/23 21:42:22 1.3
@@ -1,4 +1,4 @@
-/*	$NetBSD: msdos.c,v 1.2 2013/01/23 21:32:32 christos Exp $	*/
+/*	$NetBSD: msdos.c,v 1.3 2013/01/23 21:42:22 christos Exp $	*/
 
 /*-
  * Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
 
 #include <sys/cdefs.h>
 #if defined(__RCSID) && !defined(__lint)
-__RCSID("$NetBSD: msdos.c,v 1.2 2013/01/23 21:32:32 christos Exp $");
+__RCSID("$NetBSD: msdos.c,v 1.3 2013/01/23 21:42:22 christos Exp $");
 #endif	/* !__lint */
 
 #include <sys/param.h>
@@ -101,6 +101,7 @@
 #undef AOPT	
 		{ .name = NULL }
 	};
+	int i, rv;
 
 	assert(option != NULL);
 	assert(fsopts != NULL);
@@ -109,7 +110,22 @@
 	if (debug & DEBUG_FS_PARSE_OPTS)
 		printf("msdos_parse_opts: got `%s'\n", option);
 
-	return set_option(msdos_options, option);
+	rv = set_option(msdos_options, option);
+	if (rv == 0)
+		return rv;
+
+	for (i = 0; msdos_options[i].name != NULL && (1 << i) != rv; i++)
+		break;
+	if (msdos_options[i].name == NULL)
+		abort();
+
+	if (strcmp(msdos_options[i].name, "volume_id") == 0)
+		msdos_opt->volume_id_set = 1;
+	else if (strcmp(msdos_options[i].name, "media_descriptor") == 0)
+		msdos_opt->media_descriptor_set = 1;
+	else if (strcmp(msdos_options[i].name, "hidden_sectors") == 0)
+		msdos_opt->hidden_sectors_set = 1;
+	return rv;
 }