aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/common.h
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2020-08-22 07:45:58 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2020-08-22 07:45:58 -0400
commit07472ed702f416f8c684de8baff3b32761ebc32a (patch)
tree4bfeb5e53e2ae379dd30a80421ff29cdf1293a09 /src/include/common.h
parentcleaning up POSTMORTEM code (diff)
parentMerge pull request #3572 from smitsohu/dumpable (diff)
downloadfirejail-07472ed702f416f8c684de8baff3b32761ebc32a.tar.gz
firejail-07472ed702f416f8c684de8baff3b32761ebc32a.tar.zst
firejail-07472ed702f416f8c684de8baff3b32761ebc32a.zip
Merge branch 'master' of https://github.com/netblue30/firejail
Diffstat (limited to 'src/include/common.h')
-rw-r--r--src/include/common.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/common.h b/src/include/common.h
index c65ba0d55..025f3c247 100644
--- a/src/include/common.h
+++ b/src/include/common.h
@@ -34,6 +34,9 @@
34 34
35#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) 35#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)
36 36
37// check if processes run with dumpable flag set
38#define WARN_DUMPABLE
39
37// macro to print ip addresses in a printf statement 40// macro to print ip addresses in a printf statement
38#define PRINT_IP(A) \ 41#define PRINT_IP(A) \
39((int) (((A) >> 24) & 0xFF)), ((int) (((A) >> 16) & 0xFF)), ((int) (((A) >> 8) & 0xFF)), ((int) ( (A) & 0xFF)) 42((int) (((A) >> 24) & 0xFF)), ((int) (((A) >> 16) & 0xFF)), ((int) (((A) >> 8) & 0xFF)), ((int) ( (A) & 0xFF))