From f903f6c90c6fb5dfa21865cb128af863b884fd59 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Tue, 31 May 2022 00:20:03 +0200 Subject: [PATCH] typos --- man/binbloom.1 | 2 +- src/binbloom.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/man/binbloom.1 b/man/binbloom.1 index b754d7a..17ccb4f 100644 --- a/man/binbloom.1 +++ b/man/binbloom.1 @@ -91,4 +91,4 @@ use the provided file \fIfunctions.list\fP to guess the base address. .SH BUGS No known bugs. .SH AUTHORS -Guillaume Heires, Damien Cauquil \ No newline at end of file +Guillaume Heilles, Damien Cauquil \ No newline at end of file diff --git a/src/binbloom.c b/src/binbloom.c index 26aab50..b343646 100644 --- a/src/binbloom.c +++ b/src/binbloom.c @@ -494,7 +494,7 @@ void index_poi_structure_arrays(poi_t *p_struct_list, poi_t *p_pointers_list, po /* Compute next pointer offset. */ cursor = poi->offset + count*(nb_members*get_arch_pointer_size(g_target_arch)); - /* If next offset is in our dump, count consecutives matches. */ + /* If next offset is in our dump, count consecutive matches. */ if (cursor < (g_content_size - get_arch_pointer_size(g_target_arch))) { found = 0; @@ -1848,7 +1848,7 @@ void find_coherent_data(char *psz_filename, uint64_t u64_base_address) void print_usage(char *program_name) { - printf("Quarkslab's Binbloom - Raw firmware analyzis tool\n\n"); + printf("Quarkslab's Binbloom - Raw firmware analysis tool\n\n"); printf("Binbloom searches for endianness, base addresses and UDS structures from raw firmware files.\n\n"); printf(" Usage: %s [options] firmware_file\n", program_name); printf("\t-a (--arch)\t\tSpecify target architecture, must be 32 or 64 (default: 64).\n");