aboutsummaryrefslogtreecommitdiff
path: root/lib/ftp.c
diff options
context:
space:
mode:
authorSterling Hughes <sterling@bumblebury.com>2001-08-18 02:42:23 +0000
committerSterling Hughes <sterling@bumblebury.com>2001-08-18 02:42:23 +0000
commit1d3542a38f87af0f9bafbe8c4373a33a81556822 (patch)
tree304910774a70a0f79ff4faf62f2782579b93356a /lib/ftp.c
parent429b09ee04b8fb8d488e0ae90cc5751df9f1797b (diff)
<couldn't resist>
Use a more appropriate variable name </couldn't resist>
Diffstat (limited to 'lib/ftp.c')
-rw-r--r--lib/ftp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index 75ddbe9b0..247aa790a 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -113,7 +113,7 @@ static CURLcode AllowServerConnect(struct UrlData *data,
dt.tv_sec = 10;
dt.tv_usec = 0;
- switch ( select(sock+1, &rdset, NULL, NULL, &dt)) {
+ switch (select(sock+1, &rdset, NULL, NULL, &dt)) {
case -1: /* error */
/* let's die here */
failf(data, "Error while waiting for server connect");
@@ -264,11 +264,11 @@ int Curl_GetFTPResponse(int sockfd,
/* This is the end of the last line, copy the last
* line to the start of the buffer and zero terminate,
* for old times sake (and krb4)! */
- char *moo;
+ char *meow;
int i;
- for(moo=line_start, i=0; moo<ptr; moo++, i++)
- buf[i] = *moo;
- moo[i]=0; /* zero terminate */
+ for(meow=line_start, i=0; meow<ptr; meow++, i++)
+ buf[i] = *meow;
+ meow[i]=0; /* zero terminate */
keepon=FALSE;
break;
}