aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-10-09 21:24:50 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-10-09 21:24:50 +0000
commitd390039873cc7a8c22177f177511ed5dec72ee07 (patch)
treebc2d233804cf50f4b4c664e9fdae0485f9cf19f4 /lib/url.c
parent7d0c58a285b59c085904e9ee388797b3701d0161 (diff)
minor indent fix
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/url.c b/lib/url.c
index 3e2e37179..fefab252f 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -3917,7 +3917,7 @@ CURLcode Curl_connect(struct SessionHandle *data,
will be NULL here. Continue connecting from here */
code = SetupConnection(*in_connect, dns, protocol_done);
/* else
- response will be received and treated async wise */
+ response will be received and treated async wise */
}
if(CURLE_OK != code) {
@@ -3927,9 +3927,10 @@ CURLcode Curl_connect(struct SessionHandle *data,
Curl_disconnect(*in_connect); /* close the connection */
*in_connect = NULL; /* return a NULL */
}
- } else {
- if ((*in_connect)->is_in_pipeline)
- data->state.is_in_pipeline = TRUE;
+ }
+ else {
+ if ((*in_connect)->is_in_pipeline)
+ data->state.is_in_pipeline = TRUE;
}
return code;