aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/include/common.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/common.h b/src/include/common.h
index 68d60fef3..2fa61cc91 100644
--- a/src/include/common.h
+++ b/src/include/common.h
@@ -39,7 +39,9 @@
39#define errExit(msg) do { char msgout[500]; snprintf(msgout, 500, "Error %s: %s:%d %s", msg, __FILE__, __LINE__, __FUNCTION__); perror(msgout); exit(1);} while (0) 39#define errExit(msg) do { char msgout[500]; snprintf(msgout, 500, "Error %s: %s:%d %s", msg, __FILE__, __LINE__, __FUNCTION__); perror(msgout); exit(1);} while (0)
40 40
41// check if processes run with dumpable flag set 41// check if processes run with dumpable flag set
42#define WARN_DUMPABLE 42// currently we get "Error fseccomp: I am dumpable" every time we run a firejail build on Debian 8,
43// regardless what Debian version we run the build on
44//#define WARN_DUMPABLE
43 45
44// macro to print ip addresses in a printf statement 46// macro to print ip addresses in a printf statement
45#define PRINT_IP(A) \ 47#define PRINT_IP(A) \