corrected curl_write() for kerberos

This commit is contained in:
Daniel Stenberg 2000-09-25 22:16:36 +00:00
parent 1dac7f4d05
commit d03db1cd11
1 changed files with 1 additions and 1 deletions

View File

@ -586,7 +586,7 @@ CURLcode curl_write(CURLconnect *c_conn, char *buf, size_t amount,
#endif
#ifdef KRB4
if(conn->sec_complete)
bytes_written = sec_write(conn, conn->sockfd, buf, amount);
bytes_written = sec_write(conn, conn->writesockfd, buf, amount);
else
#endif
bytes_written = swrite(conn->writesockfd, buf, amount);