corrected curl_write() for kerberos
This commit is contained in:
@@ -586,7 +586,7 @@ CURLcode curl_write(CURLconnect *c_conn, char *buf, size_t amount,
|
|||||||
#endif
|
#endif
|
||||||
#ifdef KRB4
|
#ifdef KRB4
|
||||||
if(conn->sec_complete)
|
if(conn->sec_complete)
|
||||||
bytes_written = sec_write(conn, conn->sockfd, buf, amount);
|
bytes_written = sec_write(conn, conn->writesockfd, buf, amount);
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
bytes_written = swrite(conn->writesockfd, buf, amount);
|
bytes_written = swrite(conn->writesockfd, buf, amount);
|
||||||
|
Reference in New Issue
Block a user