From a2a2c42cfd9e9f216a78168611acbeeba60efecc Mon Sep 17 00:00:00 2001 From: louie Date: Wed, 24 Jun 2020 20:28:25 -0700 Subject: Added wildcard functionality for config --- entry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'entry.c') diff --git a/entry.c b/entry.c index 6b5e9ce..4b6d03d 100644 --- a/entry.c +++ b/entry.c @@ -23,7 +23,7 @@ char *get_epath(ENTRY *e); ENTRY *create_entry(char *new_name, char *new_path){ ENTRY *new; - //check if file exists + //double check if file exists if(access(new_path, F_OK) == -1){ printf("Error: Invalid File Name \"%s\"\n", new_path); return NULL; -- cgit