diff options
author | Mukund Sivaraman <muks@banu.com> | 2008-03-08 17:33:54 -0800 |
---|---|---|
committer | Mukund Sivaraman <muks@banu.com> | 2008-03-13 15:07:37 -0700 |
commit | d5472ec0bd8a9bb18b15a2398f429fe191070b3f (patch) | |
tree | 6fe4e3fea245fa1e8879b5d5ed95bc4031e593fc /src | |
parent | 376caf8f25b7f029c13432b1d88fbec5a1be375e (diff) | |
download | tinyproxy-d5472ec0bd8a9bb18b15a2398f429fe191070b3f.tar.gz tinyproxy-d5472ec0bd8a9bb18b15a2398f429fe191070b3f.zip |
Renamed file to replace underscores in it with dashes
Diffstat (limited to '')
-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r-- | src/conffile.c | 2 | ||||
-rw-r--r-- | src/reqs.c | 2 | ||||
-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 |
5 files changed, 7 insertions, 7 deletions
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 @@ -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) * |