diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2007-04-13 20:08:31 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2007-04-13 20:08:31 +0000 |
commit | 9fa0a46a815d3762acb25777406cf6548c52e284 (patch) | |
tree | 5d26c7ef7fb610129f9e90aa8f914910dc8d600d /sbin | |
parent | 72a02339fc3dbb9d039a97ab6515595696866ec5 (diff) |
Missing bit in last commit, remove -z for getopt string.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/newfs/newfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/newfs/newfs.c b/sbin/newfs/newfs.c index 58addb65903..c6a555dac98 100644 --- a/sbin/newfs/newfs.c +++ b/sbin/newfs/newfs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: newfs.c,v 1.58 2007/04/13 20:04:38 jmc Exp $ */ +/* $OpenBSD: newfs.c,v 1.59 2007/04/13 20:08:30 millert Exp $ */ /* $NetBSD: newfs.c,v 1.20 1996/05/16 07:13:03 thorpej Exp $ */ /* @@ -180,7 +180,7 @@ main(int argc, char *argv[]) opstring = mfs ? "P:T:b:c:e:f:i:m:o:s:" : - "NO:S:T:b:c:e:f:g:h:i:m:o:qs:t:z:"; + "NO:S:T:b:c:e:f:g:h:i:m:o:qs:t:"; while ((ch = getopt(argc, argv, opstring)) != -1) { switch (ch) { case 'N': |