From e1f18f6212fdab581c3bf732a51dcc5a9cdaa8e7 Mon Sep 17 00:00:00 2001 From: Andrea Fioraldi Date: Wed, 4 Sep 2019 10:03:51 +0200 Subject: fix typo in custom format --- src/afl-analyze.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'src/afl-analyze.c') diff --git a/src/afl-analyze.c b/src/afl-analyze.c index 7b647595..357672b1 100644 --- a/src/afl-analyze.c +++ b/src/afl-analyze.c @@ -3,7 +3,7 @@ ------------------------------------------- Originally written by Michal Zalewski - + Now maintained by by Marc Heuse , Heiko Eißfeldt and Andrea Fioraldi @@ -85,14 +85,14 @@ static volatile u8 stop_soon, /* Ctrl-C pressed? */ /* Constants used for describing byte behavior. */ -#define RESP_NONE 0x00 /* Changing byte is a no-op. */ -#define RESP_MINOR 0x01 /* Some changes have no effect. */ -#define RESP_VARIABLE 0x02 /* Changes produce variable paths. */ -#define RESP_FIXED 0x03 /* Changes produce fixed patterns. */ +#define RESP_NONE 0x00 /* Changing byte is a no-op. */ +#define RESP_MINOR 0x01 /* Some changes have no effect. */ +#define RESP_VARIABLE 0x02 /* Changes produce variable paths. */ +#define RESP_FIXED 0x03 /* Changes produce fixed patterns. */ -#define RESP_LEN 0x04 /* Potential length field */ -#define RESP_CKSUM 0x05 /* Potential checksum */ -#define RESP_SUSPECT 0x06 /* Potential "suspect" blob */ +#define RESP_LEN 0x04 /* Potential length field */ +#define RESP_CKSUM 0x05 /* Potential checksum */ +#define RESP_SUSPECT 0x06 /* Potential "suspect" blob */ /* Classify tuple counts. This is a slow & naive version, but good enough here. */ @@ -260,7 +260,7 @@ static u32 run_target(char** argv, u8* mem, u32 len, u8 first_run) { setrlimit(RLIMIT_DATA, &r); /* Ignore errors */ -#endif /* ^RLIMIT_AS */ +#endif /* ^RLIMIT_AS */ } @@ -371,7 +371,7 @@ static void show_legend(void) { } -#endif /* USE_COLOR */ +#endif /* USE_COLOR */ /* Interpret and report a pattern in the input file. */ @@ -385,7 +385,7 @@ static void dump_hex(u8* buf, u32 len, u8* b_data) { u32 rlen = 1, off; #else u32 rlen = 1; -#endif /* ^USE_COLOR */ +#endif /* ^USE_COLOR */ u8 rtype = b_data[i] & 0x0f; @@ -527,7 +527,7 @@ static void dump_hex(u8* buf, u32 len, u8* b_data) { } -#endif /* ^USE_COLOR */ +#endif /* ^USE_COLOR */ i += rlen - 1; @@ -535,7 +535,7 @@ static void dump_hex(u8* buf, u32 len, u8* b_data) { #ifdef USE_COLOR SAYF(cRST "\n"); -#endif /* USE_COLOR */ +#endif /* USE_COLOR */ } @@ -555,7 +555,7 @@ static void analyze(char** argv) { #ifdef USE_COLOR show_legend(); -#endif /* USE_COLOR */ +#endif /* USE_COLOR */ for (i = 0; i < in_len; i++) { -- cgit 1.4.1