diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-09-25 22:15:28 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-09-25 22:15:28 +0000 |
commit | ad01481b288c654c5b89bfd9c1035963d5d3589a (patch) | |
tree | 4f4e95dcc26b53a6674f7806654d712635df6383 | |
parent | 28ad7dc4a1e78d55a17fe4c0b20823791ce74caa (diff) |
krb4 transfers get a sec_fflush_fd() to get uploads to work
-rw-r--r-- | lib/ftp.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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; |