summary refs log tree commit diff
path: root/afl-dyninst.cpp
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-02-08 10:00:25 +0100
committervan Hauser <vh@thc.org>2020-02-08 10:00:25 +0100
commit96311429fd3b32b3d4a936a8a4879f9350100612 (patch)
treebada7424e436c3c4e689adcadfebd367a79040a1 /afl-dyninst.cpp
parenta1dc73241473156178009d5132b76e4307bb1664 (diff)
downloadafl-dyninst-96311429fd3b32b3d4a936a8a4879f9350100612.tar.gz
final touches
Diffstat (limited to 'afl-dyninst.cpp')
-rw-r--r--afl-dyninst.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/afl-dyninst.cpp b/afl-dyninst.cpp
index dcaeed0..50a0a31 100644
--- a/afl-dyninst.cpp
+++ b/afl-dyninst.cpp
@@ -69,7 +69,7 @@ static const char *USAGE = " -fvxD -i <binary> -o <binary> -e <address> -E <addr
   -D: instrument only a simple fork server and also forced exit functions\n \
   -x: experimental performance mode (~25-50% speed improvement)\n \
   -v: verbose output\n \
-  Note: options -l and -d have been deprecated, use -r instead.\n";
+  Note: options -l and -d have been deprecated, use -r and -D instead.\n";
 
 bool parseOptions(int argc, char **argv) {
   int c;
@@ -124,7 +124,7 @@ bool parseOptions(int argc, char **argv) {
       break;
     case 'd':
       //skipMainModule = true;
-      fprintf(stderr, "Warning: option -d has been deprecated, due various issues. Just ignore -o file :-)\n");
+      fprintf(stderr, "Warning: option -d has been deprecated, use -D instead or ignore the generated -o file.\n");
       break;
     case 'f':
 #if (__amd64__ || __x86_64__)