]> git.pld-linux.org Git - packages/aide.git/commitdiff
- fixes flex warnings
authorPaweł Gołaszewski <blues@pld-linux.org>
Sun, 28 Jul 2002 17:20:02 +0000 (17:20 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    aide-flex_fix.patch -> 1.1

aide-flex_fix.patch [new file with mode: 0644]

diff --git a/aide-flex_fix.patch b/aide-flex_fix.patch
new file mode 100644 (file)
index 0000000..39cc495
--- /dev/null
@@ -0,0 +1,67 @@
+--- ./src/conf_yacc.y.original Mon Jul 22 12:36:47 2002
++++ ./src/conf_yacc.y  Mon Jul 22 12:38:56 2002
+@@ -180,7 +180,7 @@
+           conferror("Error in expression");
+           YYABORT;
+         }
+-        }
++        };
+ 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);
+-}
++};
+ %%
This page took 0.036787 seconds and 4 git commands to generate.