diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-12-05 19:35:02 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-12-05 19:35:02 +0000 |
commit | 09433c9eab2e50940d0949d4da43a1a80d47a22d (patch) | |
tree | 682155125a4405b540cabdd3982b1b2ba3799758 /sys-libs/pam/files | |
parent | hopefully fix #9385, #9567 (diff) | |
download | gentoo-2-09433c9eab2e50940d0949d4da43a1a80d47a22d.tar.gz gentoo-2-09433c9eab2e50940d0949d4da43a1a80d47a22d.tar.bz2 gentoo-2-09433c9eab2e50940d0949d4da43a1a80d47a22d.zip |
bison fixes
Diffstat (limited to 'sys-libs/pam/files')
-rw-r--r-- | sys-libs/pam/files/pam-0.75-pam_console-bison.fixes.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sys-libs/pam/files/pam-0.75-pam_console-bison.fixes.patch b/sys-libs/pam/files/pam-0.75-pam_console-bison.fixes.patch new file mode 100644 index 000000000000..8194bedffd29 --- /dev/null +++ b/sys-libs/pam/files/pam-0.75-pam_console-bison.fixes.patch @@ -0,0 +1,18 @@ +diff -urN Linux-PAM-0.75/modules/pam_console/config.y Linux-PAM-0.75.bison/modules/pam_console/config.y +--- Linux-PAM-0.75/modules/pam_console/config.y 2001-10-02 22:29:10.000000000 +0200 ++++ Linux-PAM-0.75.bison/modules/pam_console/config.y 2002-11-21 23:40:36.000000000 +0200 +@@ -117,11 +117,11 @@ + | stringlist string {$$ = g_slist_append($1, $2);} + ; + +-optstring: string {$$=$1} +- | /* empty */ {$$=NULL} ++optstring: string {$$=$1;} ++ | /* empty */ {$$=NULL;} + ; + +-string: STRING {$$=$1} ++string: STRING {$$=$1;} ; + + %% + |