[Sorry, meant this patch to go out with the others.] This patch adjusts libapparmor's aalogparse bison grammer to use the %pure-parser keyword instead of the deprecated %pure_parser keyword. Bison had been warning about this:
libraries/libapparmor/src/grammar.y:71.1-12: warning: deprecated directive,
use ‘%pure-parser’ [-Wdeprecated]
%pure_parser
^^^^^^^^^^^^
Signed-off-by: Steve Beattie <[email protected]>
---
libraries/libapparmor/src/grammar.y | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: b/libraries/libapparmor/src/grammar.y
===================================================================
--- a/libraries/libapparmor/src/grammar.y
+++ b/libraries/libapparmor/src/grammar.y
@@ -68,7 +68,7 @@ aa_record_event_type lookup_aa_event(uns
%}
%defines
-%pure_parser
+%pure-parser
%lex-param{void *scanner}
%parse-param{void *scanner}
--
Steve Beattie
<[email protected]>
http://NxNW.org/~steve/
signature.asc
Description: Digital signature
-- AppArmor mailing list [email protected] Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/apparmor
