diff options
author | louie <lshprung@yahoo.com> | 2020-07-10 16:05:28 -0700 |
---|---|---|
committer | louie <lshprung@yahoo.com> | 2020-07-10 16:05:28 -0700 |
commit | 2ca6074cfcf99d89d665b7ebe3d2768c2adce2fe (patch) | |
tree | 81a21995cfb7ac16abb41e8b7f2f606c22a44bf0 | |
parent | 6d054aeae011fd67d1f2650fe9cece8ee5f29455 (diff) |
Fixed autoAlias bug
-rw-r--r-- | read_cfg.c | 7 | ||||
-rw-r--r-- | read_cfg.o | bin | 9232 -> 9032 bytes |
2 files changed, 4 insertions, 3 deletions
@@ -215,6 +215,7 @@ 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); } @@ -255,9 +256,9 @@ char *autoAlias(char *path){ bool stop = false; //stop when you don't want to add a series of chars to the output //get to the relative path name - if(compmode) rpath = strrchr(path, '\\'); - else rpath = strrchr(path, '/'); - rpath++; + rpath = strrchr(path, '/'); + if(rpath == NULL) rpath = path; + else rpath++; while(*rpath != '\0'){ switch(*rpath){ Binary files differ |