summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2002-04-26 19:33:09 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2002-04-26 19:33:09 +0000
commit1a8c914dd2872ea29bd656d54a63e5ddab2c082b (patch)
tree103d750f235795dec0d31f97e4afb0fb44c63a68 /ChangeLog
parent95549891101f9c9e908c1df4373127b48607a43f (diff)
downloadtinyproxy-1a8c914dd2872ea29bd656d54a63e5ddab2c082b.tar.gz
tinyproxy-1a8c914dd2872ea29bd656d54a63e5ddab2c082b.zip
Changed the len type to ssize_t because we need to detect errors in the
recv() call. Thanks to Tom Cross for discovering this bug.
Diffstat (limited to '')
-rw-r--r--ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f482c5a..7222150 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2002-04-26 Robert James Kaes <rjkaes@flarenet.com>
+ * src/reqs.c (connect_to_tunnel): Changed the len type to an
+ signed integer so that we can detect error conditions. Thanks to
+ Tom Cross for pointing out this problem.
+
* src/log.c (send_stored_logs): Check the return value of
hashmap_first() since it could be -1, indicating an empty hashmap.