summaryrefslogtreecommitdiff
path: root/usr.sbin/ospfd
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2005-03-25 13:35:25 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2005-03-25 13:35:25 +0000
commit6f40eeff71d14e1db61365efaa219a536f2012ca (patch)
tree36f1e957a30f8848445f701b9ebc36fb719105fe /usr.sbin/ospfd
parent367caa05f7f8d7687477fb03be7607b79e055127 (diff)
extra char in getopt string, Michael Knudsen <e@molioner.dk>
Diffstat (limited to 'usr.sbin/ospfd')
-rw-r--r--usr.sbin/ospfd/ospfd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospfd/ospfd.c b/usr.sbin/ospfd/ospfd.c
index 1a965e2bcc9..fd82c677399 100644
--- a/usr.sbin/ospfd/ospfd.c
+++ b/usr.sbin/ospfd/ospfd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ospfd.c,v 1.9 2005/03/15 22:03:56 claudio Exp $ */
+/* $OpenBSD: ospfd.c,v 1.10 2005/03/25 13:35:24 henning Exp $ */
/*
* Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org>
@@ -125,7 +125,7 @@ main(int argc, char *argv[])
/* start logging */
log_init(1);
- while ((ch = getopt(argc, argv, "dhf:")) != -1) {
+ while ((ch = getopt(argc, argv, "df:")) != -1) {
switch (ch) {
case 'd':
debug = 1;