summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--configure.ac2
-rw-r--r--src/Makefile.am2
-rw-r--r--src/conffile.c2
-rw-r--r--src/reqs.c2
-rw-r--r--src/reverse-proxy.c (renamed from src/reverse_proxy.c)4
-rw-r--r--src/reverse-proxy.h (renamed from src/reverse_proxy.h)4
6 files changed, 8 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac
index 2acbeb0..5966c86 100644
--- a/configure.ac
+++ b/configure.ac
@@ -130,7 +130,7 @@ TP_ARG_ENABLE(reverse,
[Enable reverse proxying (default is NO)]
no)
if test x"$reverse_enabled" = x"yes"; then
- ADDITIONAL_OBJECTS="$ADDITIONAL_OBJECTS reverse_proxy.o"
+ ADDITIONAL_OBJECTS="$ADDITIONAL_OBJECTS reverse-proxy.o"
AC_DEFINE(REVERSE_SUPPORT)
fi
diff --git a/src/Makefile.am b/src/Makefile.am
index 3904cd3..55485d6 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -41,7 +41,7 @@ tinyproxy_SOURCES = \
vector.c vector.h
EXTRA_tinyproxy_SOURCES = filter.c filter.h \
- reverse_proxy.c reverse_proxy.h
+ reverse-proxy.c reverse-proxy.h
tinyproxy_DEPENDENCIES = @ADDITIONAL_OBJECTS@
tinyproxy_LDADD = @ADDITIONAL_OBJECTS@
diff --git a/src/conffile.c b/src/conffile.c
index 66e4600..18f19fe 100644
--- a/src/conffile.c
+++ b/src/conffile.c
@@ -30,7 +30,7 @@
#include "htmlerror.h"
#include "log.h"
#include "reqs.h"
-#include "reverse_proxy.h"
+#include "reverse-proxy.h"
/*
* The configuration directives are defined in the structure below. Each
diff --git a/src/reqs.c b/src/reqs.c
index ff65343..e1a3b99 100644
--- a/src/reqs.c
+++ b/src/reqs.c
@@ -39,7 +39,7 @@
#include "text.h"
#include "utils.h"
#include "vector.h"
-#include "reverse_proxy.h"
+#include "reverse-proxy.h"
/*
* Maximum length of a HTTP line
diff --git a/src/reverse_proxy.c b/src/reverse-proxy.c
index 40f15f4..a89db0d 100644
--- a/src/reverse_proxy.c
+++ b/src/reverse-proxy.c
@@ -1,4 +1,4 @@
-/* $Id: reverse_proxy.c,v 1.1 2005-08-16 04:03:19 rjkaes Exp $
+/* $Id: reverse-proxy.c,v 1.1 2005-08-16 04:03:19 rjkaes Exp $
*
* Allow tinyproxy to be used as a reverse proxy.
*
@@ -16,7 +16,7 @@
*/
#include "tinyproxy.h"
-#include "reverse_proxy.h"
+#include "reverse-proxy.h"
#include "conns.h"
#include "heap.h"
diff --git a/src/reverse_proxy.h b/src/reverse-proxy.h
index f27a9de..05d7236 100644
--- a/src/reverse_proxy.h
+++ b/src/reverse-proxy.h
@@ -1,6 +1,6 @@
-/* $Id: reverse_proxy.h,v 1.1 2005-08-16 04:03:19 rjkaes Exp $
+/* $Id: reverse-proxy.h,v 1.1 2005-08-16 04:03:19 rjkaes Exp $
*
- * See 'reverse_proxy.c' for a detailed description.
+ * See 'reverse-proxy.c' for a detailed description.
*
* Copyright (C) 2005 Robert James Kaes (rjkaes@users.sourceforge.net)
*