diff options
author | louie <lshprung@yahoo.com> | 2020-07-09 10:02:07 -0700 |
---|---|---|
committer | louie <lshprung@yahoo.com> | 2020-07-09 10:02:07 -0700 |
commit | 8caa57886581f2207252a5c084e17d4d9fa5230b (patch) | |
tree | 2eec3129ac0aad424bec7a6a807305a73a357e1e | |
parent | 33cbd6ed8a3a6cb6c743954a22a0e93d873bc473 (diff) |
Small fix in autoAlias
-rw-r--r-- | read_cfg.c | 3 | ||||
-rw-r--r-- | read_cfg.o | bin | 8624 -> 8648 bytes |
2 files changed, 2 insertions, 1 deletions
@@ -285,7 +285,8 @@ char *autoAlias(char *path){ } //close the name - *p = '\0'; + if(*path == '"') *(p-1) = '\0'; //close early to avoid including closing quote + else *p = '\0'; return hr_name; } Binary files differ |