aboutsummaryrefslogtreecommitdiffstats
path: root/cg-limits.c
diff options
context:
space:
mode:
Diffstat (limited to 'cg-limits.c')
-rw-r--r--cg-limits.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cg-limits.c b/cg-limits.c
index 8f596f2..1048e13 100644
--- a/cg-limits.c
+++ b/cg-limits.c
@@ -362,13 +362,13 @@ parse_conf_file(const char *restrict pathname, char ***restrict names,
*b++ = '\0';
q = strpbrk(r, " \t");
- if (!q)
+ if (q)
*q = '\0';
q = strpbrk(g, " \t");
- if (!q)
+ if (q)
*q = '\0';
q = strpbrk(b, " \t");
- if (!q)
+ if (q)
*q = '\0';
q = strchr(p, '\0');