From 0f3e9e0c241c4152147d9be8b15ac367109c4146 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 13 Nov 1996 20:51:59 +0000 Subject: Change handling of skip option. svn path=/trunk/; revision=538 --- rcfile_y.y | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rcfile_y.y') diff --git a/rcfile_y.y b/rcfile_y.y index ea95dfad..22fbd8db 100644 --- a/rcfile_y.y +++ b/rcfile_y.y @@ -41,13 +41,13 @@ static void prc_reset(); char *sval; } -%token DEFAULTS POLL PROTOCOL AUTHENTICATE TIMEOUT KPOP KERBEROS +%token DEFAULTS POLL SKIP PROTOCOL AUTHENTICATE TIMEOUT KPOP KERBEROS %token USERNAME PASSWORD FOLDER SMTPHOST MDA IS HERE THERE TO MAP LIMIT %token SET BATCHLIMIT %token PROTO %token STRING %token NUMBER -%token KEEP FLUSH FETCHALL REWRITE PORT SKIP +%token KEEP FLUSH FETCHALL REWRITE PORT /* these are actually used by the lexer */ %token FLAG_TRUE 2 @@ -70,7 +70,7 @@ statement : define_server serverspecs userspecs define_server : POLL STRING {strcpy(current.servername, $2);} | SKIP STRING {strcpy(current.servername, $2); - current.skip=($1==FLAG_TRUE);} + current.skip = TRUE;} | DEFAULTS {strcpy(current.servername,"defaults");} ; -- cgit v1.2.3