summaryrefslogtreecommitdiffhomepage
path: root/src/conf.h
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2009-11-08 23:41:21 +0100
committerMichael Adam <obnox@samba.org>2009-11-14 12:13:10 +0100
commitfba81e417422abb249efa6576b3e3af6e9b044ed (patch)
treeacf1278a997165d66f5b0a3c6024c25fd2dc8496 /src/conf.h
parenta09dd9cd00f0752ff14b326d556073904f095ed7 (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.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/conf.h b/src/conf.h
index 9c3036a..f80ca3e 100644
--- a/src/conf.h
+++ b/src/conf.h
@@ -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