aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-11-19 20:08:01 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-11-19 20:08:01 +0000
commitd0c1f3e25ba6ca86b434bb7a5f1bc01381594788 (patch)
tree0b5b42609e6ff158ddd7e77e1f3049bf4567384e /lib
parentb244710ddba83c73b6d761fcec8d3bf51e103a53 (diff)
long port => int port, as the c source uses! (Miklos Nemeth found this)
Diffstat (limited to 'lib')
-rw-r--r--lib/connect.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/connect.h b/lib/connect.h
index 8d36365e5..f8c10db06 100644
--- a/lib/connect.h
+++ b/lib/connect.h
@@ -28,7 +28,7 @@ int Curl_nonblock(int socket, /* operate on this */
CURLcode Curl_connecthost(struct connectdata *conn,
Curl_addrinfo *host, /* connect to this */
- long port, /* connect to this port number */
+ int port, /* connect to this port number */
int *sockconn, /* not set if error is returned */
Curl_ipconnect **addr /* the one we used */
); /* index we used */