From: Daniel Stenberg Date: Fri, 28 Sep 2001 09:19:35 +0000 (+0000) Subject: fixed the missing getftpresponse edits X-Git-Tag: curl-7_9_1~151 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=09da2c176735ab52beb3731028f4dfd5fd321255;p=thirdparty%2Fcurl.git fixed the missing getftpresponse edits --- diff --git a/lib/krb4.c b/lib/krb4.c index 26682cb3ad..ab8838fc84 100644 --- a/lib/krb4.c +++ b/lib/krb4.c @@ -247,8 +247,7 @@ krb4_auth(void *app_data, struct connectdata *conn) Curl_ftpsendf(conn, "ADAT %s", p); - nread = Curl_GetFTPResponse(conn->firstsocket, - conn->data->state.buffer, conn, NULL); + nread = Curl_GetFTPResponse(conn->data->state.buffer, conn, NULL); if(nread < 0) return /*CURLE_OPERATION_TIMEOUTED*/-1; free(p); @@ -313,8 +312,7 @@ void Curl_krb_kauth(struct connectdata *conn) save = Curl_set_command_prot(conn, prot_private); - Curl_ftpsendf(conn, - "SITE KAUTH %s", conn->data->state.user); + Curl_ftpsendf(conn, "SITE KAUTH %s", conn->data->state.user); nread = Curl_GetFTPResponse(conn->data->state.buffer, conn, NULL); diff --git a/lib/security.c b/lib/security.c index c1ac5fdf87..63591f1345 100644 --- a/lib/security.c +++ b/lib/security.c @@ -491,8 +491,7 @@ Curl_sec_login(struct connectdata *conn) Curl_ftpsendf(conn, "AUTH %s", (*m)->name); /* wait for feedback */ - nread = Curl_GetFTPResponse(conn->firstsocket, - conn->data->state.buffer, conn, NULL); + nread = Curl_GetFTPResponse(conn->data->state.buffer, conn, NULL); if(nread < 0) return /*CURLE_OPERATION_TIMEOUTED*/-1; if(/*ret != CONTINUE*/conn->data->state.buffer[0] != '3'){