Rename conffile.[ch] to conf.[ch]

This commit is contained in:
Mukund Sivaraman 2009-09-21 09:41:59 +05:30
parent 9d5a15ed2d
commit 0cc707b3ff
4 changed files with 6 additions and 6 deletions

View File

@ -26,7 +26,7 @@ tinyproxy_SOURCES = \
buffer.c buffer.h \ buffer.c buffer.h \
child.c child.h \ child.c child.h \
common.h \ common.h \
conffile.c conffile.h \ conf.c conf.h \
conns.c conns.h \ conns.c conns.h \
daemon.c daemon.h \ daemon.c daemon.h \
hashmap.c hashmap.h \ hashmap.c hashmap.h \

View File

@ -24,7 +24,7 @@
#include "main.h" #include "main.h"
#include "conffile.h" #include "conf.h"
#include "acl.h" #include "acl.h"
#include "anonymous.h" #include "anonymous.h"

View File

@ -16,10 +16,10 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
/* See 'conffile.c' for detailed information. */ /* See 'conf.c' for detailed information. */
#ifndef TINYPROXY_CONFFILE_H #ifndef TINYPROXY_CONF_H
#define TINYPROXY_CONFFILE_H #define TINYPROXY_CONF_H
extern int config_compile (void); extern int config_compile (void);
extern int config_parse (struct config_s *conf, FILE * f); extern int config_parse (struct config_s *conf, FILE * f);

View File

@ -30,7 +30,7 @@
#include "anonymous.h" #include "anonymous.h"
#include "buffer.h" #include "buffer.h"
#include "conffile.h" #include "conf.h"
#include "daemon.h" #include "daemon.h"
#include "heap.h" #include "heap.h"
#include "filter.h" #include "filter.h"