summaryrefslogtreecommitdiffstatsabout
path: root/utility/config.c
diff options
context:
space:
mode:
authorEdward Rudd <urkle@outoforder.cc>2008-10-30 03:16:51 (GMT)
committer Edward Rudd <urkle@outoforder.cc>2008-10-30 03:16:51 (GMT)
commit4c46bfeaa5ec5c6a87c29ece56891e070d3faee1 (patch)
tree15d788623ea5a2ff7f4dacbf42f454bc8510c675 /utility/config.c
parentd3a4a623fa6e429bfa5938e01c97cb7dbd3ece97 (diff)
fix tokenize_logfile (derived off of now known buggy apr_tokenize_to_argv function)
switch all calls to apr_tokenize_to_argv to renamed tokenize_logfile (parser_tokenize_line)
Diffstat (limited to 'utility/config.c')
-rw-r--r--utility/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utility/config.c b/utility/config.c
index 3b6e946..064a5e2 100644
--- a/utility/config.c
+++ b/utility/config.c
@@ -442,7 +442,7 @@ apr_status_t config_read(config_t *cfg, const char *filename,
442 if (*ptr == '\0') 442 if (*ptr == '\0')
443 continue; 443 continue;
444 apr_pool_clear(targp); 444 apr_pool_clear(targp);
445 apr_tokenize_to_argv(ptr, &targv, targp); 445 parser_tokenize_line(ptr, &targv, targp);
446 targc = 0; 446 targc = 0;
447 while (targv[targc]) 447 while (targv[targc])
448 targc++; 448 targc++;