summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMukund Sivaraman <muks@banu.com>2008-05-24 13:47:14 +0530
committerMukund Sivaraman <muks@banu.com>2008-05-24 13:47:14 +0530
commitb0a3568de0d0a8d1d6000aaa310870862398a07b (patch)
tree26398bd0d15e566003a665ea90223b729148672f /src
parent249d4b7f3355236e1e1490d2cffe6eccb95d1a42 (diff)
downloadtinyproxy-b0a3568de0d0a8d1d6000aaa310870862398a07b.tar.gz
tinyproxy-b0a3568de0d0a8d1d6000aaa310870862398a07b.zip
Renamed htmlerror.[ch] to html-error.[ch]
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am2
-rw-r--r--src/conffile.c2
-rw-r--r--src/html-error.c (renamed from src/htmlerror.c)2
-rw-r--r--src/html-error.h (renamed from src/htmlerror.h)8
-rw-r--r--src/reqs.c2
-rw-r--r--src/reverse-proxy.c2
-rw-r--r--src/stats.c2
7 files changed, 10 insertions, 10 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 8b08f7d..1399bc5 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -28,7 +28,7 @@ tinyproxy_SOURCES = \
daemon.c daemon.h \
hashmap.c hashmap.h \
heap.c heap.h \
- htmlerror.c htmlerror.h \
+ html-error.c html-error.h \
http-message.c http-message.h \
log.c log.h \
network.c network.h \
diff --git a/src/conffile.c b/src/conffile.c
index 8aef348..2ae1d90 100644
--- a/src/conffile.c
+++ b/src/conffile.c
@@ -31,7 +31,7 @@
#include "child.h"
#include "filter.h"
#include "heap.h"
-#include "htmlerror.h"
+#include "html-error.h"
#include "log.h"
#include "reqs.h"
#include "reverse-proxy.h"
diff --git a/src/htmlerror.c b/src/html-error.c
index 84bb912..398420b 100644
--- a/src/htmlerror.c
+++ b/src/html-error.c
@@ -26,7 +26,7 @@
#include "buffer.h"
#include "conns.h"
#include "heap.h"
-#include "htmlerror.h"
+#include "html-error.h"
#include "network.h"
#include "utils.h"
diff --git a/src/htmlerror.h b/src/html-error.h
index a1b35d8..2e35b5b 100644
--- a/src/htmlerror.h
+++ b/src/html-error.h
@@ -16,10 +16,10 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-/* See 'htmlerror.c' for detailed information. */
+/* See 'html-error.c' for detailed information. */
-#ifndef TINYPROXY_HTMLERROR_H
-#define TINYPROXY_HTMLERROR_H
+#ifndef TINYPROXY_HTML_ERROR_H
+#define TINYPROXY_HTML_ERROR_H
/* Forward declaration */
struct conn_s;
@@ -33,4 +33,4 @@ extern int send_html_file(FILE * infile, struct conn_s *connptr);
extern int send_http_headers(struct conn_s *connptr, int code, char *message);
extern int add_standard_vars(struct conn_s *connptr);
-#endif /* !TINYPROXY_HTMLERROR_H */
+#endif /* !TINYPROXY_HTML_ERROR_H */
diff --git a/src/reqs.c b/src/reqs.c
index 72ff1e2..5c5ff77 100644
--- a/src/reqs.c
+++ b/src/reqs.c
@@ -34,7 +34,7 @@
#include "filter.h"
#include "hashmap.h"
#include "heap.h"
-#include "htmlerror.h"
+#include "html-error.h"
#include "log.h"
#include "network.h"
#include "reqs.h"
diff --git a/src/reverse-proxy.c b/src/reverse-proxy.c
index 814c3ff..9915540 100644
--- a/src/reverse-proxy.c
+++ b/src/reverse-proxy.c
@@ -23,7 +23,7 @@
#include "conns.h"
#include "heap.h"
-#include "htmlerror.h"
+#include "html-error.h"
#include "log.h"
/*
diff --git a/src/stats.c b/src/stats.c
index 83b3709..86b2911 100644
--- a/src/stats.c
+++ b/src/stats.c
@@ -29,7 +29,7 @@
#include "log.h"
#include "heap.h"
-#include "htmlerror.h"
+#include "html-error.h"
#include "stats.h"
#include "utils.h"