about summary refs log tree commit diff
path: root/llvm_mode/afl-clang-fast.c
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-07-05 11:01:24 +0200
committerGitHub <noreply@github.com>2020-07-05 11:01:24 +0200
commit869c602b991be335b93f135815cd304029854d78 (patch)
tree9a7ca52f70c9043db4770d06b09d341cc2204f9d /llvm_mode/afl-clang-fast.c
parent3144f72e1cf197612888868275575e615f6cbfb5 (diff)
parent4fd145c52e29b73e4a8ded70f682aa37c3652f01 (diff)
downloadafl++-869c602b991be335b93f135815cd304029854d78.tar.gz
Merge pull request #438 from EliaGeretto/fix-typo
Fix typo in compiler wrapper for LLVM instrumentation
Diffstat (limited to 'llvm_mode/afl-clang-fast.c')
-rw-r--r--llvm_mode/afl-clang-fast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm_mode/afl-clang-fast.c b/llvm_mode/afl-clang-fast.c
index f1b03682..07c3c07c 100644
--- a/llvm_mode/afl-clang-fast.c
+++ b/llvm_mode/afl-clang-fast.c
@@ -660,7 +660,7 @@ int main(int argc, char **argv, char **envp) {
       }
 
       if (strncasecmp(ptr, "pc-guard", strlen("pc-guard")) == 0 ||
-          strncasecmp(ptr, "pcguard", strlen("pcgard")) == 0) {
+          strncasecmp(ptr, "pcguard", strlen("pcguard")) == 0) {
 
         if (!instrument_mode || instrument_mode == INSTRUMENT_PCGUARD)
           instrument_mode = INSTRUMENT_PCGUARD;