about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2024-02-09 13:09:16 +0100
committervanhauser-thc <vh@thc.org>2024-02-09 13:09:23 +0100
commitf2b7357ff3efedca53a7cd856469b439c2e547ef (patch)
tree9240b6777f7d56a0ce112d947f35dbb4d67bf98f /src
parent3cbaefd24779580b1617284a328177db8aaad93f (diff)
downloadafl++-f2b7357ff3efedca53a7cd856469b439c2e547ef.tar.gz
fixes
Diffstat (limited to 'src')
-rw-r--r--src/afl-forkserver.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/afl-forkserver.c b/src/afl-forkserver.c
index 7253e6d7..1d42adf5 100644
--- a/src/afl-forkserver.c
+++ b/src/afl-forkserver.c
@@ -1197,9 +1197,17 @@ void afl_fsrv_start(afl_forkserver_t *fsrv, char **argv,
 
     } else {
 
-      WARNF(
-          "Old fork server model is used by the target, this still works "
-          "though.");
+      if (!fsrv->qemu_mode && !fsrv->cs_mode
+#ifdef __linux__
+          && !fsrv->nyx_mode
+#endif
+      ) {
+
+        WARNF(
+            "Old fork server model is used by the target, this still works "
+            "though.");
+
+      }
 
       if (!be_quiet) { OKF("All right - old fork server is up."); }