2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-09-02 23:35:37 +00:00

fix race condition between boot.apparmor and boot.cleanup bnc#426149

This commit is contained in:
John Johansen
2008-11-07 01:19:55 +00:00
parent 32696e32bc
commit 1b0dd32cca
6 changed files with 484 additions and 70 deletions

View File

@@ -34,6 +34,13 @@
#include "parser.h"
#include "parser_yacc.h"
foo() {
char *unsupported_perm = _("%s permission: not supported on current system.\n");
char *unsupported_rule = _("%s rule: not supported on current system.\n");
printf("%s%s\n", unsupported_perm, unsupported_rule);
}
/* #define DEBUG */
#ifdef DEBUG
#define PDEBUG(fmt, args...) printf("Lexer: " fmt, ## args)