diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-10-17 13:23:21 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-10-17 13:23:21 +0000 |
commit | c141d990599c9bb6f8c71257b063bc04a0f657c5 (patch) | |
tree | a070a266dd70e9f3d009d87e05d9d12e300fc79e | |
parent | f66e1c49b026a9f72cda3edd604a68b1ec9f4052 (diff) |
fix syntax error
-rw-r--r-- | lib/url.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |