diff options
author | sheldonh <sheldonh@FreeBSD.org> | 1999-09-01 12:42:00 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 1999-09-01 12:42:00 +0000 |
commit | 15e27f246fc8ff93aa5ac215cb9648046c5d8b9f (patch) | |
tree | 2c33341c8b9c1dd2b3face2f641d879170db0b55 /usr.sbin/yp_mkdb/yp_mkdb.c | |
parent | ed48ce561c1169ee3ddc516727cc8bbe72cf4ad5 (diff) | |
download | FreeBSD-src-15e27f246fc8ff93aa5ac215cb9648046c5d8b9f.zip FreeBSD-src-15e27f246fc8ff93aa5ac215cb9648046c5d8b9f.tar.gz |
Fix stupid disorder in previous commit. This was my own error, not
the mistake of the PR's originator.
Diffstat (limited to 'usr.sbin/yp_mkdb/yp_mkdb.c')
-rw-r--r-- | usr.sbin/yp_mkdb/yp_mkdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/yp_mkdb/yp_mkdb.c b/usr.sbin/yp_mkdb/yp_mkdb.c index d49448c..a5fed00 100644 --- a/usr.sbin/yp_mkdb/yp_mkdb.c +++ b/usr.sbin/yp_mkdb/yp_mkdb.c @@ -118,7 +118,7 @@ int main (argc, argv) FILE *ifp; char hname[MAXHOSTNAMELEN + 2]; - while ((ch = getopt(argc, argv, "uhcbsd:fi:o:m:")) != -1) { + while ((ch = getopt(argc, argv, "uhcbsfd:i:o:m:")) != -1) { switch(ch) { case 'f': filter_plusminus++; |