mirror of
https://github.com/curl/curl.git
synced 2026-04-15 00:41:41 +03:00
corrected curl_write() for kerberos
This commit is contained in:
parent
1dac7f4d05
commit
d03db1cd11
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue