aboutsummaryrefslogtreecommitdiff
path: root/frida_mode/src/seccomp/seccomp.c
diff options
context:
space:
mode:
authorYour Name <you@example.com>2021-11-09 18:29:25 +0000
committerYour Name <you@example.com>2021-11-10 05:25:29 +0000
commit02e8919cbc744064510f6cd99539f7662343073f (patch)
tree9f9a8fc6346242b793ce7e671813168ccec72a8e /frida_mode/src/seccomp/seccomp.c
parent8578b6b01c5f41d8a75ae83cb2c058fe89bf90df (diff)
downloadafl++-02e8919cbc744064510f6cd99539f7662343073f.tar.gz
Suppress spurious output
Diffstat (limited to 'frida_mode/src/seccomp/seccomp.c')
-rw-r--r--frida_mode/src/seccomp/seccomp.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/frida_mode/src/seccomp/seccomp.c b/frida_mode/src/seccomp/seccomp.c
index 99111591..9d8fdd5d 100644
--- a/frida_mode/src/seccomp/seccomp.c
+++ b/frida_mode/src/seccomp/seccomp.c
@@ -1,7 +1,5 @@
#include "frida-gumjs.h"
-#include "debug.h"
-
#include "seccomp.h"
#include "util.h"
@@ -12,7 +10,7 @@ void seccomp_on_fork(void) {
if (seccomp_filename == NULL) { return; }
#ifdef __APPLE__
- FATAL("Seccomp not supported on OSX");
+ FFATAL("Seccomp not supported on OSX");
#else
seccomp_callback_parent();
#endif
@@ -27,12 +25,12 @@ void seccomp_config(void) {
void seccomp_init(void) {
- OKF("Seccomp - file [%s]", seccomp_filename);
+ FOKF("Seccomp - file [%s]", seccomp_filename);
if (seccomp_filename == NULL) { return; }
#ifdef __APPLE__
- FATAL("Seccomp not supported on OSX");
+ FFATAL("Seccomp not supported on OSX");
#else
seccomp_callback_initialize();
#endif