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

This commit is contained in:
christos 2013-01-23 21:42:22 +00:00
parent 1c35cd3809
commit 6981fea57c
3 changed files with 27 additions and 8 deletions

View File

@ -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 @@ ffs_parse_opts(const char *option, fsinfo_t *fsopts)
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;

View File

@ -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 @@ set_option_var(const option_t *options, const char *var, const char *val)
val);
return 0;
}
return 1;
return 1 << i;
}
warnx("Unknown option `%s'", var);
return (0);

View File

@ -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 @@ ALLOPTS
#undef AOPT
{ .name = NULL }
};
int i, rv;
assert(option != NULL);
assert(fsopts != NULL);
@ -109,7 +110,22 @@ ALLOPTS
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;
}