From 76c801a685d9b94de383d46c0002f383af72ed8e Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Mon, 9 Aug 1999 14:35:53 +0000 Subject: [PATCH] Allow a list of users as the first thing in a user spec, not just a single entry. This makes things more uniform, though it does allow you to write user specs that are hard to read. --- parse.yacc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse.yacc b/parse.yacc index e71927543..a3f0bd70f 100644 --- a/parse.yacc +++ b/parse.yacc @@ -244,7 +244,7 @@ entry : COMMENT { ; } | error COMMENT { yyerrok; } - | { push; } opuser privileges { + | { push; } userlist privileges { while (top && user_matches != TRUE) { pop; } -- 2.40.0