diff options
author | Michael Adam <obnox@samba.org> | 2009-11-08 23:41:21 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-11-14 12:13:10 +0100 |
commit | fba81e417422abb249efa6576b3e3af6e9b044ed (patch) | |
tree | acf1278a997165d66f5b0a3c6024c25fd2dc8496 /src/conf.h | |
parent | a09dd9cd00f0752ff14b326d556073904f095ed7 (diff) |
conf: refactor loading of config file out into load_config_file()
and make config_compile and config_parse static to conf.c
Michael
Diffstat (limited to 'src/conf.h')
-rw-r--r-- | src/conf.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -21,7 +21,6 @@ #ifndef TINYPROXY_CONF_H #define TINYPROXY_CONF_H -extern int config_compile (void); -extern int config_parse (struct config_s *conf, FILE * f); +extern int load_config_file (const char *config_fname, struct config_s *conf); #endif |