diff options
Diffstat (limited to 'src/tool_parsecfg.c')
-rw-r--r-- | src/tool_parsecfg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tool_parsecfg.c b/src/tool_parsecfg.c index efb9159e7..5aeb2eebf 100644 --- a/src/tool_parsecfg.c +++ b/src/tool_parsecfg.c @@ -173,7 +173,7 @@ int parseconfig(const char *filename, struct GlobalConfig *global) /* ... and has ended here */ if(*line) - *line++ = '\0'; /* zero terminate, we have a local copy of the data */ + *line++ = '\0'; /* null-terminate, we have a local copy of the data */ #ifdef DEBUG_CONFIG fprintf(stderr, "GOT: %s\n", option); @@ -203,7 +203,7 @@ int parseconfig(const char *filename, struct GlobalConfig *global) line++; if(*line) { - *line = '\0'; /* zero terminate */ + *line = '\0'; /* null-terminate */ /* to detect mistakes better, see if there's data following */ line++; @@ -329,7 +329,7 @@ static const char *unslashquote(const char *line, char *param) else *param++ = *line++; } - *param = '\0'; /* always zero terminate */ + *param = '\0'; /* always null-terminate */ return line; } |