avoid a warning about declaring a variable that shadows an earlier declared

one
This commit is contained in:
Daniel Stenberg 2006-04-18 10:51:07 +00:00
parent 343b882d80
commit 17bf5ac2fc
1 changed files with 1 additions and 1 deletions

View File

@ -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