2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-08-31 14:25:52 +00:00

Merge parser: replace duplicate warn_once() with common function

The warn_once() function is duplicated in 6 different places. A common, reusable version has been added to parser_common.c.

MR: https://gitlab.com/apparmor/apparmor/-/merge_requests/590
Acked-by: John Johansen <john.johansen@canonical.com>
This commit is contained in:
John Johansen
2020-08-20 08:54:52 +00:00
15 changed files with 57 additions and 87 deletions

View File

@@ -329,6 +329,7 @@ extern char *current_filename;
extern FILE *ofile;
extern int read_implies_exec;
extern void pwarn(const char *fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
extern void common_warn_once(const char *name, const char *msg, const char **warned_name);
/* from parser_main (cannot be used in tst builds) */
extern int force_complain;