summaryrefslogtreecommitdiff
path: root/entry.c
diff options
context:
space:
mode:
authorlouie <lshprung@yahoo.com>2020-06-24 20:28:25 -0700
committerlouie <lshprung@yahoo.com>2020-06-24 20:28:25 -0700
commita2a2c42cfd9e9f216a78168611acbeeba60efecc (patch)
treeaeb26d7e9096a04a5f36069a0ff0812c9f22e79a /entry.c
parent43eeda3d0982160d7863dd2268d989f79c24f03f (diff)
Added wildcard functionality for config
Diffstat (limited to 'entry.c')
-rw-r--r--entry.c2
1 files changed, 1 insertions, 1 deletions
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;