diff options
author | Yuan <zodf0055980@gmail.com> | 2021-01-28 17:21:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-28 17:21:54 +0800 |
commit | ad63ba49c181dd97786745913c6b2ade5ae69728 (patch) | |
tree | 0493c363bc22315d5cf4e59af8d50ab77859513e | |
parent | 1dfea4e91a042d9e617c0845104a3a0af3394624 (diff) | |
download | afl++-ad63ba49c181dd97786745913c6b2ade5ae69728.tar.gz |
Fix getopt arg string
There is no '-P' case here.
-rw-r--r-- | src/afl-fuzz.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index b92aa2a7..a1f749b5 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -357,7 +357,7 @@ int main(int argc, char **argv_orig, char **envp) { while ((opt = getopt( argc, argv, - "+b:B:c:CdDe:E:hi:I:f:F:l:L:m:M:nNo:p:P:RQs:S:t:T:UV:Wx:Z")) > + "+b:B:c:CdDe:E:hi:I:f:F:l:L:m:M:nNo:p:RQs:S:t:T:UV:Wx:Z")) > 0) { switch (opt) { |