From: Sterling Hughes Date: Sat, 18 Aug 2001 02:42:23 +0000 (+0000) Subject: X-Git-Tag: curl-7_8_1~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1d3542a38f87af0f9bafbe8c4373a33a81556822;p=thirdparty%2Fcurl.git Use a more appropriate variable name --- diff --git a/lib/ftp.c b/lib/ftp.c index 75ddbe9b03..247aa790ad 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