summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2002-04-07 21:37:07 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2002-04-07 21:37:07 +0000
commitbf82c863bc58ee1e6b52d71e84c97fdd85bad5e4 (patch)
tree5cc7d31904ca975ac54ff7dbbf17ab3e1146eadd
parent1d52d9d51033308bb2cfd47f57433f9984d8ff2d (diff)
downloadtinyproxy-bf82c863bc58ee1e6b52d71e84c97fdd85bad5e4.tar.gz
tinyproxy-bf82c863bc58ee1e6b52d71e84c97fdd85bad5e4.zip
Just a variable name change to make it easier to read.
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 a4516b2..8d274e2 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -1,4 +1,4 @@
-/* $Id: utils.c,v 1.21 2001-12-24 00:02:32 rjkaes Exp $
+/* $Id: utils.c,v 1.22 2002-04-07 21:37:07 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,
@@ -100,7 +100,7 @@ send_http_message(struct conn_s *connptr, int http_code,
safe_write(connptr->client_fd, message, strlen(message));
- connptr->send_response_message = TRUE;
+ connptr->response_message_sent = TRUE;
return 0;
}