diff options
author | cy <cy@FreeBSD.org> | 2002-11-07 01:27:50 +0000 |
---|---|---|
committer | cy <cy@FreeBSD.org> | 2002-11-07 01:27:50 +0000 |
commit | 98fb1e845bd5fb83d7c8a24b05550e0f020992d7 (patch) | |
tree | 5eb4c9eeb83ae9f6dd1f4ccbdaacddc17cde904a /security/aide | |
parent | 0db2e296cb582fddb70e3e5f394a59f6f4162883 (diff) | |
download | FreeBSD-ports-98fb1e845bd5fb83d7c8a24b05550e0f020992d7.zip FreeBSD-ports-98fb1e845bd5fb83d7c8a24b05550e0f020992d7.tar.gz |
Bison 1.75 fix.
Diffstat (limited to 'security/aide')
-rw-r--r-- | security/aide/files/patch-src::conf_yacc.y | 62 |
1 files changed, 59 insertions, 3 deletions
diff --git a/security/aide/files/patch-src::conf_yacc.y b/security/aide/files/patch-src::conf_yacc.y index 71840af..a517d3c 100644 --- a/security/aide/files/patch-src::conf_yacc.y +++ b/security/aide/files/patch-src::conf_yacc.y @@ -1,6 +1,6 @@ ---- src/conf_yacc.y.orig Thu Apr 13 06:41:46 2000 -+++ src/conf_yacc.y Tue Oct 29 07:14:34 2002 -@@ -144,7 +144,7 @@ +--- src/conf_yacc.y.orig Wed May 29 01:04:27 2002 ++++ src/conf_yacc.y Wed Nov 6 17:27:11 2002 +@@ -180,7 +180,7 @@ conferror("Error in expression"); YYABORT; } @@ -9,3 +9,59 @@ other : TRIGHTS { $$ =$1 ;} | TUSER {$$ =$1 ;} | TGROUP {$$ =$1 ;} | TINODE {$$ =$1 ;} +@@ -242,11 +242,11 @@ + beginconfigstmt : TBEGIN_CONFIG TSTRING { + conf->do_configmd=1; + conf->old_confmdstr=strdup($2); +-} ++} ; + + endconfigstmt : TEND_CONFIG { + YYACCEPT; +-} ++} ; + + acl_no_symlink_follow : TACLNOSYMLINKFOLLOW TTRUE { + #ifdef WITH_ACL +@@ -254,7 +254,7 @@ + #else + error(0,"ACL-support not compiled in.\n"); + #endif +-} ++} ; + + acl_no_symlink_follow : TACLNOSYMLINKFOLLOW TFALSE { + #ifdef WITH_ACL +@@ -262,15 +262,15 @@ + #else + error(0,"ACL-support not compiled in.\n"); + #endif +-} ++} ; + + warn_dead_symlinks : TWARNDEADSYMLINKS TTRUE { + conf->warn_dead_symlinks=1; +-} ++} ; + + warn_dead_symlinks : TWARNDEADSYMLINKS TFALSE { + conf->warn_dead_symlinks=0; +-} ++} ; + + gzipdbout : TGZIPDBOUT TTRUE { + #ifdef WITH_ZLIB +@@ -288,11 +288,11 @@ + recursion_stopper : TRECSTOP TSTRING { + /* FIXME implement me */ + +-} ++} ; + + config_version : TCONFIG_VERSION TSTRING { + conf->config_version=strdup($2); +-} ++} ; + + %% + |