aboutsummaryrefslogtreecommitdiff
path: root/custom_mutators
diff options
context:
space:
mode:
authorAndrea Fioraldi <andreafioraldi@gmail.com>2021-02-19 18:21:10 +0100
committerAndrea Fioraldi <andreafioraldi@gmail.com>2021-02-19 18:21:10 +0100
commit6998489b26fc87461e1036903ffa7e6496e2b2e9 (patch)
treeb808cabacab048b01506abaf17d26f2f39fc8d07 /custom_mutators
parent4290cb587763b334c7fb1213bc50dada8d62765d (diff)
downloadAFLplusplus-6998489b26fc87461e1036903ffa7e6496e2b2e9.tar.gz
Revert "Remove self-referential symlink"
This reverts commit aaf5fcd98a7c713ab8b6ae554babbf74bd92374b.
Diffstat (limited to 'custom_mutators')
-rw-r--r--custom_mutators/honggfuzz/honggfuzz.h2
l---------custom_mutators/honggfuzz/libhfcommon1
-rw-r--r--custom_mutators/honggfuzz/mangle.c6
3 files changed, 5 insertions, 4 deletions
diff --git a/custom_mutators/honggfuzz/honggfuzz.h b/custom_mutators/honggfuzz/honggfuzz.h
index 62c30f2f..eb6a3f11 100644
--- a/custom_mutators/honggfuzz/honggfuzz.h
+++ b/custom_mutators/honggfuzz/honggfuzz.h
@@ -36,7 +36,7 @@
#include <sys/types.h>
#include <time.h>
-#include "util.h"
+#include "libhfcommon/util.h"
#define PROG_NAME "honggfuzz"
#define PROG_VERSION "2.3"
diff --git a/custom_mutators/honggfuzz/libhfcommon b/custom_mutators/honggfuzz/libhfcommon
new file mode 120000
index 00000000..945c9b46
--- /dev/null
+++ b/custom_mutators/honggfuzz/libhfcommon
@@ -0,0 +1 @@
+. \ No newline at end of file
diff --git a/custom_mutators/honggfuzz/mangle.c b/custom_mutators/honggfuzz/mangle.c
index db339305..637d428d 100644
--- a/custom_mutators/honggfuzz/mangle.c
+++ b/custom_mutators/honggfuzz/mangle.c
@@ -35,9 +35,9 @@
#include <time.h>
#include "input.h"
-#include "common.h"
-#include "log.h"
-#include "util.h"
+#include "libhfcommon/common.h"
+#include "libhfcommon/log.h"
+#include "libhfcommon/util.h"
static inline size_t mangle_LenLeft(run_t* run, size_t off) {
if (off >= run->dynfile->size) {