diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2000-01-04 16:58:05 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2000-01-04 16:58:05 +0000 |
commit | 322624c4e7fc3b32b3439bc2e4c9c498182fcd23 (patch) | |
tree | 937f58dc5f24fb32f7d5646b146df272d1b25acd | |
parent | f3ba3221422360487310ab6ee90d37cbca7cf6a8 (diff) |
la la la
fix buggy optstring for -c
-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 31e4dc6d25e..659c6e5abce 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.8 1999/05/25 16:40:55 millert Exp $ + * $Id: smtpd.c,v 1.9 2000/01/04 16:58:04 beck 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.8 1999/05/25 16:40:55 millert Exp $"; +char *obtuse_rcsid = "$Id: smtpd.c,v 1.9 2000/01/04 16:58:04 beck 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:cHPDL"; + char *optstring = "l:p:q:d:u:s:g:m:i:c:HPDL"; 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. */ |