diff options
author | 2003-11-09 07:35:25 +0000 | |
---|---|---|
committer | 2003-11-09 07:35:25 +0000 | |
commit | f3e35df27948b969b00301a95e5ad31849c332bb (patch) | |
tree | 4ee1fd66a54e4634714e69c739af33fef73955ea | |
parent | Unbreak printing of vlan interface information, commented out accidentally (diff) | |
download | wireguard-openbsd-f3e35df27948b969b00301a95e5ad31849c332bb.tar.xz wireguard-openbsd-f3e35df27948b969b00301a95e5ad31849c332bb.zip |
add missing -v to getopt
-rw-r--r-- | libexec/spamd/spamd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/spamd/spamd.c b/libexec/spamd/spamd.c index 18848f46e6e..16ddcf8834c 100644 --- a/libexec/spamd/spamd.c +++ b/libexec/spamd/spamd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: spamd.c,v 1.51 2003/11/08 09:01:04 jmc Exp $ */ +/* $OpenBSD: spamd.c,v 1.52 2003/11/09 07:35:25 dhartmei Exp $ */ /* * Copyright (c) 2002 Theo de Raadt. All rights reserved. @@ -809,7 +809,7 @@ main(int argc, char *argv[]) if (gethostname(hostname, sizeof hostname) == -1) err(1, "gethostname"); - while ((ch = getopt(argc, argv, "45c:p:dr:s:n:w:")) != -1) { + while ((ch = getopt(argc, argv, "45c:p:dr:s:n:vw:")) != -1) { switch (ch) { case '4': nreply = "450"; |