From 17bf5ac2fca38fc1f54a89a526a577ef0dea0295 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 18 Apr 2006 10:51:07 +0000 Subject: [PATCH] avoid a warning about declaring a variable that shadows an earlier declared one --- lib/connect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/connect.c b/lib/connect.c index 8964ec551..f0865f47c 100644 --- a/lib/connect.c +++ b/lib/connect.c @@ -375,7 +375,6 @@ static CURLcode bindlocal(struct connectdata *conn, if( bind(sockfd, sock, socksize) >= 0) { /* we succeeded to bind */ struct Curl_sockaddr_storage add; - unsigned short port = 0; size_t size; size = sizeof(add); @@ -384,6 +383,7 @@ static CURLcode bindlocal(struct connectdata *conn, failf(data, "getsockname() failed"); return CURLE_HTTP_PORT_FAILED; } + /* We re-use/clobber the port variable here below */ if(((struct sockaddr *)&add)->sa_family == AF_INET) port = ntohs(((struct sockaddr_in *)&add)->sin_port); #ifdef ENABLE_IPV6