aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2008-10-17 13:23:21 +0000
committerDaniel Stenberg <daniel@haxx.se>2008-10-17 13:23:21 +0000
commitc141d990599c9bb6f8c71257b063bc04a0f657c5 (patch)
treea070a266dd70e9f3d009d87e05d9d12e300fc79e /lib
parentf66e1c49b026a9f72cda3edd604a68b1ec9f4052 (diff)
fix syntax error
Diffstat (limited to 'lib')
-rw-r--r--lib/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/url.c b/lib/url.c
index bf2327589..065b74f62 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -232,7 +232,7 @@ static void close_connections(struct SessionHandle *data)
{
/* Loop through all open connections and kill them one by one */
long i;
- do {
+ do
i = ConnectionKillOne(data);
while(i != -1L);
}