COMP: Fix C syntax, and remove unused variable

This commit is contained in:
Andy Cedilnik 2004-10-07 08:26:35 -04:00
parent c47af14ee1
commit c03fa90b5b
1 changed files with 2 additions and 3 deletions

View File

@ -271,7 +271,6 @@ static CURLcode bindlocal(struct connectdata *conn,
*************************************************************/
if (strlen(data->set.device)<255) {
struct Curl_dns_entry *h=NULL;
size_t size;
char myhost[256] = "";
in_addr_t in;
int rc;
@ -362,13 +361,13 @@ static CURLcode bindlocal(struct connectdata *conn,
struct sockaddr_in add;
#endif
bindworked = TRUE;
#ifdef __hpux
int gsize = sizeof(add);
#else
socklen_t gsize = sizeof(add);
#endif
bindworked = TRUE;
if(getsockname(sockfd, (struct sockaddr *) &add,
&gsize)<0) {
failf(data, "getsockname() failed");