From 7cd59baada752a4df2fe10a114057b295630dfd9 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Thu, 8 Nov 2007 12:24:41 +0000 Subject: [PATCH] Don't quote *?[]! on output since the lexer does not strip off the backslash when reading those in. --- parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse.c b/parse.c index 9a3af430b..145e4d90e 100644 --- a/parse.c +++ b/parse.c @@ -53,7 +53,7 @@ __unused static const char rcsid[] = "$Sudo$"; #endif /* lint */ /* Characters that must be quoted in sudoers */ -#define SUDOERS_QUOTED "*?[]!:\\,=#\"" +#define SUDOERS_QUOTED ":\\,=#\"" /* * Local prototypes. -- 2.40.0