diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2003-09-04 01:20:34 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2003-09-04 01:20:34 +0000 |
commit | 61fde54a1db58915eaf09c252a54867de7e503b6 (patch) | |
tree | 81f9cd491d47a933a241b0af62293a77981d62fc /libexec/spamd | |
parent | 774422469551d3a5a6acdb7e46bba36bbe180686 (diff) |
forgot to put w in optstring in last commit.
Diffstat (limited to 'libexec/spamd')
-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 ff559adf8c7..4385ed553ff 100644 --- a/libexec/spamd/spamd.c +++ b/libexec/spamd/spamd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: spamd.c,v 1.41 2003/09/03 21:22:19 tedu Exp $ */ +/* $OpenBSD: spamd.c,v 1.42 2003/09/04 01:20:33 tedu Exp $ */ /* * Copyright (c) 2002 Theo de Raadt. All rights reserved. @@ -797,7 +797,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:")) != -1) { + while ((ch = getopt(argc, argv, "45c:p:dr:s:n:w:")) != -1) { switch (ch) { case '4': nreply = "450"; |