mirror of
https://github.com/curl/curl.git
synced 2026-08-25 06:03:32 +03:00
(Curl_GetFTPResponse) moved some code to only get performed when actually
needed
This commit is contained in:
parent
8358505b6d
commit
15b2a3af91
1 changed files with 5 additions and 4 deletions
|
|
@ -235,11 +235,11 @@ int Curl_GetFTPResponse(char *buf,
|
|||
keepon=TRUE;
|
||||
|
||||
while((nread<BUFSIZE) && (keepon && !error)) {
|
||||
readfd = rkeepfd; /* set every lap */
|
||||
interval.tv_sec = timeout;
|
||||
interval.tv_usec = 0;
|
||||
if(!ftp->cache) {
|
||||
readfd = rkeepfd; /* set every lap */
|
||||
interval.tv_sec = timeout;
|
||||
interval.tv_usec = 0;
|
||||
|
||||
if(!ftp->cache)
|
||||
switch (select (sockfd+1, &readfd, NULL, NULL, &interval)) {
|
||||
case -1: /* select() error, stop reading */
|
||||
error = SELECT_ERROR;
|
||||
|
|
@ -253,6 +253,7 @@ int Curl_GetFTPResponse(char *buf,
|
|||
error = SELECT_OK;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(SELECT_OK == error) {
|
||||
/*
|
||||
* This code previously didn't use the kerberos sec_read() code
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue