diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | afl-dyninst.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md index 3f71c19..d0a20c6 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ Usage: afl-dyninst -dfvxD -i binary -o binary -l library -e address -E address -D: instrument only a simple fork server and also forced exit functions -x: experimental performance mode (~25-50% speed improvement) -v: verbose output - Note: options -l and -d have been deprecated, use -r instead. + Note: options -l and -d have been deprecated, use -r and -D instead. ``` Switch -e is used to manualy specify the entry point where initialization 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__) |