Author: rhuijben
Date: Sun Oct 18 11:10:39 2015
New Revision: 1709261
URL: http://svn.apache.org/viewvc?rev=1709261&view=rev
Log:
* serf-dev/dev/outgoing.c
(read_from_connection): Fix type of close_connection variable with how
it is used.
Modified:
serf/trunk/outgoing.c
Modified: serf/trunk/outgoing.c
URL:
http://svn.apache.org/viewvc/serf/trunk/outgoing.c?rev=1709261&r1=1709260&r2=1709261&view=diff
==============================================================================
--- serf/trunk/outgoing.c (original)
+++ serf/trunk/outgoing.c Sun Oct 18 11:10:39 2015
@@ -1187,7 +1187,7 @@ static apr_status_t read_from_connection
{
apr_status_t status;
apr_pool_t *tmppool;
- int close_connection = FALSE;
+ apr_status_t close_connection = APR_SUCCESS;
/* Whatever is coming in on the socket corresponds to the first request
* on our chain.