diff options
author | José Fonseca <jrfonseca@users.sourceforge.net> | 2002-09-29 13:02:26 +0000 |
---|---|---|
committer | José Fonseca <jrfonseca@users.sourceforge.net> | 2002-09-29 13:02:26 +0000 |
commit | ceba778f9554c6e17382f2331972cac4a593449e (patch) | |
tree | 14882bd777465079db31b7eb5bb96a4fc819ae65 | |
parent | 65cd53586ba48574606b74c1d27cfdf1d1dd705a (diff) |
Removed the BUGS section of the man page.
Fixed a dipplicate case statement.
Added yyerror declaration to fixe the mismathced declaration warning.
-rw-r--r-- | esmtp.1 | 4 | ||||
-rw-r--r-- | main.c | 2 | ||||
-rw-r--r-- | parser.y | 2 |
3 files changed, 3 insertions, 5 deletions
@@ -340,7 +340,3 @@ fetchmail(1) José Fonseca .PP Brian Stafford - -.SH BUGS -.B esmtp -ignores most of sendmail options. @@ -285,7 +285,7 @@ main (int argc, char **argv) /* Run as a daemon in foreground */ case 'h': /* Print the persistent host status database */ - case 'h': + case 'H': /* Purge expired entries from the persistent host status database */ case 'p': /* Print a listing of the queue(s) */ @@ -29,6 +29,8 @@ extern char *certificate_passphrase; /* using Bison, this arranges that yydebug messages will show actual tokens */ extern char * yytext; #define YYPRINT(fp, type, val) fprintf(fp, " = \"%s\"", yytext) + +void yyerror (const char *s); %} %union { |