Index: config.c =================================================================== --- config.c (revision 7849) +++ config.c (working copy) @@ -439,10 +439,9 @@ static int process_text_line(struct ast_ c = cur; while(*c && (*c > 32)) c++; if (*c) { - *c = '\0'; - c++; + *c++ = '\0'; /* Find real argument */ - while(*c && (*c < 33)) c++; + c = ast_skip_blanks(c); if (!*c) c = NULL; } else