summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2001-11-25 22:08:11 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2001-11-25 22:08:11 +0000
commitfa193dcd22c5dd4ff7c8a0c964cba2dc69fb3a99 (patch)
tree9b84bcc23e2779739d2ce501ee06b1089477ce7a
parentf8b61da4ae5597f02c78c48f429c93d9024034df (diff)
downloadtinyproxy-fa193dcd22c5dd4ff7c8a0c964cba2dc69fb3a99.tar.gz
tinyproxy-fa193dcd22c5dd4ff7c8a0c964cba2dc69fb3a99.zip
send_message changed to send_response_message in the conn_s structure.
Diffstat (limited to '')
-rw-r--r--src/utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils.c b/src/utils.c
index b65655b..381388e 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -1,4 +1,4 @@
-/* $Id: utils.c,v 1.18 2001-11-23 01:19:15 rjkaes Exp $
+/* $Id: utils.c,v 1.19 2001-11-25 22:08:11 rjkaes Exp $
*
* Misc. routines which are used by the various functions to handle strings
* and memory allocation and pretty much anything else we can think of. Also,
@@ -104,7 +104,7 @@ send_http_message(struct conn_s *connptr, int http_code,
safefree(header_buffer);
- connptr->send_message = TRUE;
+ connptr->send_response_message = TRUE;
return 0;
}