aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2007-09-27 02:45:58 +0000
committerDan Fandrich <dan@coneharvesters.com>2007-09-27 02:45:58 +0000
commit0bd2d54814145a6d0638ae0e663e6a69087e085c (patch)
tree7442cce04a98a47e212087922c6d16648bb095b3 /lib
parent16b95fc77316fdd3866f7de4ebb5d14bd136ac11 (diff)
Renamed a few variables to avoid shadowing global declarations.
Diffstat (limited to 'lib')
-rw-r--r--lib/ftp.c20
-rw-r--r--lib/gtls.h2
-rw-r--r--lib/nssg.h2
3 files changed, 12 insertions, 12 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index 56eb0ec75..1b195ef09 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -130,7 +130,7 @@ static CURLcode ftp_state_post_cwd(struct connectdata *conn);
static CURLcode ftp_state_quote(struct connectdata *conn,
bool init, ftpstate instate);
static CURLcode ftp_nb_type(struct connectdata *conn,
- bool ascii, ftpstate state);
+ bool ascii, ftpstate newstate);
static int ftp_need_type(struct connectdata *conn,
bool ascii);
@@ -1013,28 +1013,28 @@ static CURLcode ftp_state_use_port(struct connectdata *conn,
unsigned short ip[4];
bool freeaddr = TRUE;
socklen_t sslen = sizeof(sa);
- const char *ftpport = data->set.str[STRING_FTPPORT];
+ const char *ftpportstr = data->set.str[STRING_FTPPORT];
(void)fcmd; /* not used in the IPv4 code */
- if(ftpport) {
+ if(ftpportstr) {
in_addr_t in;
/* First check if the given name is an IP address */
- in=inet_addr(ftpport);
+ in=inet_addr(ftpportstr);
if(in != CURL_INADDR_NONE)
/* this is an IPv4 address */
- addr = Curl_ip2addr(in, ftpport, 0);
+ addr = Curl_ip2addr(in, ftpportstr, 0);
else {
- if(Curl_if2ip(ftpport, myhost, sizeof(myhost))) {
+ if(Curl_if2ip(ftpportstr, myhost, sizeof(myhost))) {
/* The interface to IP conversion provided a dotted address */
in=inet_addr(myhost);
addr = Curl_ip2addr(in, myhost, 0);
}
- else if(strlen(ftpport)> 1) {
+ else if(strlen(ftpportstr)> 1) {
/* might be a host name! */
struct Curl_dns_entry *h=NULL;
- int rc = Curl_resolv(conn, ftpport, 0, &h);
+ int rc = Curl_resolv(conn, ftpportstr, 0, &h);
if(rc == CURLRESOLV_PENDING)
/* BLOCKING */
rc = Curl_wait_for_resolv(conn, &h);
@@ -1048,11 +1048,11 @@ static CURLcode ftp_state_use_port(struct connectdata *conn,
since it points to a DNS cache entry! */
} /* (h) */
else {
- infof(data, "Failed to resolve host name %s\n", ftpport);
+ infof(data, "Failed to resolve host name %s\n", ftpportstr);
}
} /* strlen */
} /* CURL_INADDR_NONE */
- } /* ftpport */
+ } /* ftpportstr */
if(!addr) {
/* pick a suitable default here */
diff --git a/lib/gtls.h b/lib/gtls.h
index feb02fd64..8dc0a30d4 100644
--- a/lib/gtls.h
+++ b/lib/gtls.h
@@ -31,7 +31,7 @@ CURLcode Curl_gtls_connect(struct connectdata *conn, int sockindex);
void Curl_gtls_close_all(struct SessionHandle *data);
/* close a SSL connection */
-void Curl_gtls_close(struct connectdata *conn, int index);
+void Curl_gtls_close(struct connectdata *conn, int sockindex);
/* return number of sent (non-SSL) bytes */
ssize_t Curl_gtls_send(struct connectdata *conn, int sockindex,
diff --git a/lib/nssg.h b/lib/nssg.h
index c8582d389..0dad7523d 100644
--- a/lib/nssg.h
+++ b/lib/nssg.h
@@ -33,7 +33,7 @@ CURLcode Curl_nss_connect_nonblocking(struct connectdata *conn,
int sockindex,
bool *done);
/* close a SSL connection */
-void Curl_nss_close(struct connectdata *conn, int index);
+void Curl_nss_close(struct connectdata *conn, int sockindex);
/* tell NSS to close down all open information regarding connections (and
thus session ID caching etc) */