From 8b668be219fa8683525bb76f11070861da2a8d4a Mon Sep 17 00:00:00 2001 From: Albert S Date: Mon, 11 May 2015 12:33:10 +0200 Subject: [PATCH] better function name --- adhocify.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adhocify.c b/adhocify.c index 3fe1850..f7eccb6 100644 --- a/adhocify.c +++ b/adhocify.c @@ -151,7 +151,7 @@ static inline bool file_exists(const char *path) } -void add_ignore_list(const char *str) +void add_to_ignore_list(const char *str) { *ignorelist_current = xmalloc(sizeof(struct ignorelist)); (*ignorelist_current)->ignore = xstrdup(str); @@ -495,7 +495,7 @@ void parse_options(int argc, char **argv) forkbombcheck=false; break; case 'i': - add_ignore_list(optarg); + add_to_ignore_list(optarg); break; case 'q': silent=true;