aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLukas Nykryn <lnykryn@redhat.com>2014-09-16 17:09:57 +0200
committerLukas Nykryn <lnykryn@redhat.com>2014-09-16 17:09:57 +0200
commit65901ce5f29f9ec45339c3474a360d9bbcee6bac (patch)
tree8a096f7a227abe93d4ca410b45d02866b0bd0003 /src
parent567871c9e9cadc68c3d06ea072dece24450f0f55 (diff)
downloadinitscripts-65901ce5f29f9ec45339c3474a360d9bbcee6bac.tar
initscripts-65901ce5f29f9ec45339c3474a360d9bbcee6bac.tar.gz
initscripts-65901ce5f29f9ec45339c3474a360d9bbcee6bac.tar.bz2
initscripts-65901ce5f29f9ec45339c3474a360d9bbcee6bac.tar.xz
initscripts-65901ce5f29f9ec45339c3474a360d9bbcee6bac.zip
rename_devices: comments need to have a blank before them
Diffstat (limited to 'src')
-rw-r--r--src/rename_device.c19
1 files changed, 13 insertions, 6 deletions
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 <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <ctype.h>
#include <sys/ioctl.h>
#include <sys/time.h>
@@ -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;