From d0c1f3e25ba6ca86b434bb7a5f1bc01381594788 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 19 Nov 2001 20:08:01 +0000 Subject: [PATCH] long port => int port, as the c source uses! (Miklos Nemeth found this) --- lib/connect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */