From 7b4971bc90b9766b1f643ab5c1aba7d7b3ac5fb0 Mon Sep 17 00:00:00 2001 From: Lukas Nykryn Date: Tue, 16 Sep 2014 17:09:57 +0200 Subject: rename_devices: comments need to have a blank before them --- src/rename_device.c | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/rename_device.c b/src/rename_device.c index bb5e6b8f..f45e996c 100644 --- a/src/rename_device.c +++ b/src/rename_device.c @@ -27,6 +27,7 @@ #include #include #include +#include #include #include @@ -120,13 +121,19 @@ int isCfg(const struct dirent *dent) { } static inline char *dequote(char *start, char *end) { - char *c; - //remove comments and trailing whitespace - c = strchr(start, '#'); - if (c!=NULL) - *c='\0'; + char *c; + //remove comments and trailing whitespace + for (c = start; c && *c; c++) { + c = strchr(c, '#'); + if (!c) + break; + if (c > start && isblank(*(c-1))) { + *c = '\0'; + break; + } + } - g_strchomp(start); + g_strchomp(start); if (end==NULL) { end=start; -- cgit v1.2.1