Module Name:    src
Committed By:   christos
Date:           Tue Jan 29 21:54:19 UTC 2013

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

Log Message:
add missing arguments.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/usr.sbin/makefs/msdos.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/msdos.c
diff -u src/usr.sbin/makefs/msdos.c:1.10 src/usr.sbin/makefs/msdos.c:1.11
--- src/usr.sbin/makefs/msdos.c:1.10	Mon Jan 28 16:03:27 2013
+++ src/usr.sbin/makefs/msdos.c	Tue Jan 29 16:54:19 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: msdos.c,v 1.10 2013/01/28 21:03:27 christos Exp $	*/
+/*	$NetBSD: msdos.c,v 1.11 2013/01/29 21:54:19 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.10 2013/01/28 21:03:27 christos Exp $");
+__RCSID("$NetBSD: msdos.c,v 1.11 2013/01/29 21:54:19 christos Exp $");
 #endif	/* !__lint */
 
 #include <sys/param.h>
@@ -119,7 +119,7 @@ msdos_parse_opts(const char *option, fsi
 	if (debug & DEBUG_FS_PARSE_OPTS)
 		printf("msdos_parse_opts: got `%s'\n", option);
 
-	rv = set_option(msdos_options, option);
+	rv = set_option(msdos_options, option, NULL, 0);
 	if (rv == -1)
 		return rv;
 

Reply via email to