summaryrefslogtreecommitdiffstatsabout
path: root/utility/logparse.h
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/logparse.h
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/logparse.h')
-rw-r--r--utility/logparse.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/utility/logparse.h b/utility/logparse.h
index fe708a5..8f0fc42 100644
--- a/utility/logparse.h
+++ b/utility/logparse.h
@@ -23,6 +23,9 @@ void parser_init(apr_pool_t *p);
23 23
24void parser_find_logs(config_t *cfg); 24void parser_find_logs(config_t *cfg);
25 25
26apr_status_t parser_tokenize_line(const char *arg_str, char ***argv_out,
27 apr_pool_t *token_context);
28
26apr_status_t parser_parsefile(config_t *cfg, config_filestat_t *fstat); 29apr_status_t parser_parsefile(config_t *cfg, config_filestat_t *fstat);
27 30
28apr_status_t parser_processline(apr_pool_t *ptemp, config_t *cfg, 31apr_status_t parser_processline(apr_pool_t *ptemp, config_t *cfg,