blob: 8194bedffd29099279fd9cfbb8b6d1700763e240 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;} ;
%%
|