]> granicus.if.org Git - curl/commitdiff
ConnectionStore: remove unused return code
authorDaniel Stenberg <daniel@haxx.se>
Wed, 4 May 2011 21:56:18 +0000 (23:56 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 4 May 2011 21:56:18 +0000 (23:56 +0200)
lib/url.c

index fa0557711574472a669ee225fd3f604d6c6972a9..1a605c52a108b323e53d969c4e7ac0273381f87f 100644 (file)
--- a/lib/url.c
+++ b/lib/url.c
@@ -3085,9 +3085,8 @@ ConnectionDone(struct connectdata *conn)
  * The given connection should be unique. That must've been checked prior to
  * this call.
  */
-static long
-ConnectionStore(struct SessionHandle *data,
-                struct connectdata *conn)
+static void ConnectionStore(struct SessionHandle *data,
+                            struct connectdata *conn)
 {
   long i;
   for(i=0; i< data->state.connc->num; i++) {
@@ -3121,8 +3120,6 @@ ConnectionStore(struct SessionHandle *data,
     data->state.connc->connects[i] = conn; /* fill in this */
     conn->data = data;
   }
-
-  return i;
 }
 
 /* after a TCP connection to the proxy has been verified, this function does