Renamed file to replace underscores in it with dashes

This commit is contained in:
Mukund Sivaraman 2008-03-08 17:33:54 -08:00
parent 376caf8f25
commit d5472ec0bd
6 changed files with 8 additions and 8 deletions

View File

@ -130,7 +130,7 @@ TP_ARG_ENABLE(reverse,
[Enable reverse proxying (default is NO)] [Enable reverse proxying (default is NO)]
no) no)
if test x"$reverse_enabled" = x"yes"; then 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) AC_DEFINE(REVERSE_SUPPORT)
fi fi

View File

@ -41,7 +41,7 @@ tinyproxy_SOURCES = \
vector.c vector.h vector.c vector.h
EXTRA_tinyproxy_SOURCES = filter.c filter.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_DEPENDENCIES = @ADDITIONAL_OBJECTS@
tinyproxy_LDADD = @ADDITIONAL_OBJECTS@ tinyproxy_LDADD = @ADDITIONAL_OBJECTS@

View File

@ -30,7 +30,7 @@
#include "htmlerror.h" #include "htmlerror.h"
#include "log.h" #include "log.h"
#include "reqs.h" #include "reqs.h"
#include "reverse_proxy.h" #include "reverse-proxy.h"
/* /*
* The configuration directives are defined in the structure below. Each * The configuration directives are defined in the structure below. Each

View File

@ -39,7 +39,7 @@
#include "text.h" #include "text.h"
#include "utils.h" #include "utils.h"
#include "vector.h" #include "vector.h"
#include "reverse_proxy.h" #include "reverse-proxy.h"
/* /*
* Maximum length of a HTTP line * Maximum length of a HTTP line

View File

@ -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. * Allow tinyproxy to be used as a reverse proxy.
* *
@ -16,7 +16,7 @@
*/ */
#include "tinyproxy.h" #include "tinyproxy.h"
#include "reverse_proxy.h" #include "reverse-proxy.h"
#include "conns.h" #include "conns.h"
#include "heap.h" #include "heap.h"

View File

@ -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) * Copyright (C) 2005 Robert James Kaes (rjkaes@users.sourceforge.net)
* *