about summary refs log tree commit diff
path: root/frida_mode/src/seccomp/seccomp.c
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2021-11-10 11:27:24 +0100
committerGitHub <noreply@github.com>2021-11-10 11:27:24 +0100
commit45748fd7522159d95fc54bc5ea2e5bfc978813e3 (patch)
tree9f9a8fc6346242b793ce7e671813168ccec72a8e /frida_mode/src/seccomp/seccomp.c
parent75821d2943ee207a6d862440ac1c466b96a52861 (diff)
parent02e8919cbc744064510f6cd99539f7662343073f (diff)
downloadafl++-45748fd7522159d95fc54bc5ea2e5bfc978813e3.tar.gz
Merge pull request #1153 from WorksButNotTested/frida
Frida
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