From ceba778f9554c6e17382f2331972cac4a593449e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Fonseca?= Date: Sun, 29 Sep 2002 13:02:26 +0000 Subject: Removed the BUGS section of the man page. Fixed a dipplicate case statement. Added yyerror declaration to fixe the mismathced declaration warning. --- esmtp.1 | 4 ---- main.c | 2 +- parser.y | 2 ++ 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/esmtp.1 b/esmtp.1 index 822f9fe..c586966 100644 --- a/esmtp.1 +++ b/esmtp.1 @@ -340,7 +340,3 @@ fetchmail(1) José Fonseca .PP Brian Stafford - -.SH BUGS -.B esmtp -ignores most of sendmail options. diff --git a/main.c b/main.c index da685ac..d9019d9 100644 --- a/main.c +++ b/main.c @@ -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) */ diff --git a/parser.y b/parser.y index 5426675..4cd9024 100644 --- a/parser.y +++ b/parser.y @@ -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 { -- cgit v1.2.3