diff options
author | louie <lshprung@yahoo.com> | 2020-07-10 16:34:54 -0700 |
---|---|---|
committer | louie <lshprung@yahoo.com> | 2020-07-10 16:34:54 -0700 |
commit | 7378343295af76d0cb33f725d3052b1557ac1b2e (patch) | |
tree | 40da4c79b73997bb3ff10cfcb3bc43d9f81dd9a9 /read_cfg.c | |
parent | 2ca6074cfcf99d89d665b7ebe3d2768c2adce2fe (diff) |
Fixed bugs related to Executables
Diffstat (limited to 'read_cfg.c')
-rw-r--r-- | read_cfg.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -215,7 +215,6 @@ void handle_fname(char *path, char *group){ //check if autoAlias is on. If it is, go to the autoAlias function if(hr){ - printf("DEBUG: path = %s\n", relative_path_cpy); strcpy(auto_name, autoAlias(relative_path_cpy)); new = create_entry(auto_name, relative_path_cpy); } @@ -230,6 +229,9 @@ void handle_fname(char *path, char *group){ //directory is not real, report error to the user else printf("Error: \"%s\" bad path\n", dirname); } + + //path is not real, report error to the user + else printf("Error: \"%s\" bad path\n", dirname); } //file name is okay |