about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/afl-forkserver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-forkserver.c b/src/afl-forkserver.c
index c3c115a1..214b4fe9 100644
--- a/src/afl-forkserver.c
+++ b/src/afl-forkserver.c
@@ -1017,7 +1017,7 @@ void afl_fsrv_start(afl_forkserver_t *fsrv, char **argv,
 
   if (rlen == 4) {
 
-    if (memcmp((char*)status, "AFL", 3) == 0) {
+    if (status >= 0x41464c00 && status <= 0x41464cff) {
 
       FATAL("Target uses the new forkserver model, you need to switch to a newer afl-fuzz too!");