about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--docs/notes_for_asan.txt2
-rw-r--r--libdislocator/Makefile2
-rw-r--r--libdislocator/README.dislocator.md (renamed from libdislocator/README.md)0
-rw-r--r--libdislocator/libdislocator.so.c2
-rw-r--r--libtokencap/Makefile2
-rw-r--r--libtokencap/README.tokencap.md (renamed from libtokencap/README.md)0
-rw-r--r--libtokencap/libtokencap.so.c2
8 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 88a86aaa..e8d4e6a8 100644
--- a/README.md
+++ b/README.md
@@ -457,7 +457,7 @@ parsers and grammars, but isn't nearly as good as the -x mode.
 
 If a dictionary is really hard to come by, another option is to let AFL run
 for a while, and then use the token capture library that comes as a companion
-utility with AFL. For that, see [libtokencap/README.md](libtokencap/README.md).
+utility with AFL. For that, see [libtokencap/README.md](libtokencap/README.tokencap.md).
 
 
 ## 11) Crash triage
diff --git a/docs/notes_for_asan.txt b/docs/notes_for_asan.txt
index 972ca909..09ca172e 100644
--- a/docs/notes_for_asan.txt
+++ b/docs/notes_for_asan.txt
@@ -34,7 +34,7 @@ Note that ASAN is incompatible with -static, so be mindful of that.
 There is also the option of generating a corpus using a non-ASAN binary, and
 then feeding it to an ASAN-instrumented one to check for bugs. This is faster,
 and can give you somewhat comparable results. You can also try using
-libdislocator (see libdislocator/README.dislocator in the parent directory) as a
+libdislocator (see libdislocator/README.dislocator.md in the parent directory) as a
 lightweight and hassle-free (but less thorough) alternative.
 
 2) Long version
diff --git a/libdislocator/Makefile b/libdislocator/Makefile
index 91efba07..05ba26b3 100644
--- a/libdislocator/Makefile
+++ b/libdislocator/Makefile
@@ -34,5 +34,5 @@ clean:
 
 install: all
 	install -m 755 ../libdislocator.so $${DESTDIR}$(HELPER_PATH)
-	install -m 644 README.dislocator $${DESTDIR}$(HELPER_PATH)
+	install -m 644 README.dislocator.md $${DESTDIR}$(HELPER_PATH)
 
diff --git a/libdislocator/README.md b/libdislocator/README.dislocator.md
index 5d5a1464..5d5a1464 100644
--- a/libdislocator/README.md
+++ b/libdislocator/README.dislocator.md
diff --git a/libdislocator/libdislocator.so.c b/libdislocator/libdislocator.so.c
index 7fe40afa..106b44f4 100644
--- a/libdislocator/libdislocator.so.c
+++ b/libdislocator/libdislocator.so.c
@@ -14,7 +14,7 @@
      http://www.apache.org/licenses/LICENSE-2.0
 
    This is a companion library that can be used as a drop-in replacement
-   for the libc allocator in the fuzzed binaries. See README.dislocator for
+   for the libc allocator in the fuzzed binaries. See README.dislocator.md for
    more info.
 
  */
diff --git a/libtokencap/Makefile b/libtokencap/Makefile
index df2426ed..6e1319d8 100644
--- a/libtokencap/Makefile
+++ b/libtokencap/Makefile
@@ -49,5 +49,5 @@ clean:
 
 install: all
 	install -m 755 ../libtokencap.so $${DESTDIR}$(HELPER_PATH)
-	install -m 644 README.tokencap $${DESTDIR}$(HELPER_PATH)
+	install -m 644 README.tokencap.md $${DESTDIR}$(HELPER_PATH)
 
diff --git a/libtokencap/README.md b/libtokencap/README.tokencap.md
index 8aae38bf..8aae38bf 100644
--- a/libtokencap/README.md
+++ b/libtokencap/README.tokencap.md
diff --git a/libtokencap/libtokencap.so.c b/libtokencap/libtokencap.so.c
index 2fe9ae63..7495180d 100644
--- a/libtokencap/libtokencap.so.c
+++ b/libtokencap/libtokencap.so.c
@@ -15,7 +15,7 @@
 
    This Linux-only companion library allows you to instrument strcmp(),
    memcmp(), and related functions to automatically extract tokens.
-   See README.tokencap for more info.
+   See README.tokencap.md for more info.
 
  */