Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.sbin/makefs return the bit of the option set, so that ot...



details:   https://anonhg.NetBSD.org/src/rev/8ac21d2417e0
branches:  trunk
changeset: 784278:8ac21d2417e0
user:      christos <christos%NetBSD.org@localhost>
date:      Wed Jan 23 21:42:22 2013 +0000

description:
return the bit of the option set, so that others can act on it.

diffstat:

 usr.sbin/makefs/ffs.c    |   7 +++++--
 usr.sbin/makefs/makefs.c |   6 +++---
 usr.sbin/makefs/msdos.c  |  22 +++++++++++++++++++---
 3 files changed, 27 insertions(+), 8 deletions(-)

diffs (105 lines):

diff -r c3ca0072ea12 -r 8ac21d2417e0 usr.sbin/makefs/ffs.c
--- a/usr.sbin/makefs/ffs.c     Wed Jan 23 21:32:32 2013 +0000
+++ b/usr.sbin/makefs/ffs.c     Wed Jan 23 21:42:22 2013 +0000
@@ -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>
@@ -232,6 +232,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) {
                        ffs_opts->optimization = FS_OPTTIME;
diff -r c3ca0072ea12 -r 8ac21d2417e0 usr.sbin/makefs/makefs.c
--- a/usr.sbin/makefs/makefs.c  Wed Jan 23 21:32:32 2013 +0000
+++ b/usr.sbin/makefs/makefs.c  Wed Jan 23 21:42:22 2013 +0000
@@ -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);
diff -r c3ca0072ea12 -r 8ac21d2417e0 usr.sbin/makefs/msdos.c
--- a/usr.sbin/makefs/msdos.c   Wed Jan 23 21:32:32 2013 +0000
+++ b/usr.sbin/makefs/msdos.c   Wed Jan 23 21:42:22 2013 +0000
@@ -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;
 }
 
 



Home | Main Index | Thread Index | Old Index