From: Daniel Stenberg Date: Mon, 25 Sep 2000 22:15:28 +0000 (+0000) Subject: krb4 transfers get a sec_fflush_fd() to get uploads to work X-Git-Tag: curl-7_3~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad01481b288c654c5b89bfd9c1035963d5d3589a;p=thirdparty%2Fcurl.git krb4 transfers get a sec_fflush_fd() to get uploads to work --- diff --git a/lib/ftp.c b/lib/ftp.c index 2967232468..174c41e3e4 100644 --- a/lib/ftp.c +++ b/lib/ftp.c @@ -535,6 +535,9 @@ CURLcode ftp_done(struct connectdata *conn) return CURLE_FTP_COULDNT_RETR_FILE; } } +#ifdef KRB4 + sec_fflush_fd(conn, data->secondarysocket); +#endif /* shut down the socket to inform the server we're done */ sclose(data->secondarysocket); data->secondarysocket = -1;