diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-08-02 13:45:16 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-08-02 13:45:16 +0000 |
commit | 0610ca2cc60b44c356708b005b66bf59cd903463 (patch) | |
tree | daade830ba537ff13a2794f274809e0b55c9fbb4 | |
parent | c35fb86975237c17add2fc8249d66eb101d8540e (diff) |
The -q (quiet) option does not take an argument; armin@wolfermann.org
Fixes PR/1346
-rw-r--r-- | libexec/smtpd/src/smtpd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/smtpd/src/smtpd.c b/libexec/smtpd/src/smtpd.c index 659c6e5abce..66180f425b3 100644 --- a/libexec/smtpd/src/smtpd.c +++ b/libexec/smtpd/src/smtpd.c @@ -2,7 +2,7 @@ * smtpd, Obtuse SMTP daemon, storing agent. does simple collection of * mail messages, for later forwarding by smtpfwdd. * - * $Id: smtpd.c,v 1.9 2000/01/04 16:58:04 beck Exp $ + * $Id: smtpd.c,v 1.10 2000/08/02 13:45:15 aaron Exp $ * * Copyright (c) 1996, 1997 Obtuse Systems Corporation. All rights * reserved. @@ -40,7 +40,7 @@ char *obtuse_copyright = "Copyright 1996 - Obtuse Systems Corporation - All rights reserved."; -char *obtuse_rcsid = "$Id: smtpd.c,v 1.9 2000/01/04 16:58:04 beck Exp $"; +char *obtuse_rcsid = "$Id: smtpd.c,v 1.10 2000/08/02 13:45:15 aaron Exp $"; #include <stdarg.h> #include <stdlib.h> @@ -2020,7 +2020,7 @@ main(int argc, char **argv) { int opt; long smtp_port = 25; - char *optstring = "l:p:q:d:u:s:g:m:i:c:HPDL"; + char *optstring = "l:p:d:u:s:g:m:i:c:HPDLq"; int i, k; smtp_state_set last_state_s, current_state_s; /* The real state vector. */ smtp_state last_state, current_state; /* Pointers to the state vector. */ |