corrected curl_write() for kerberos
authorDaniel Stenberg <daniel@haxx.se>
Mon, 25 Sep 2000 22:16:36 +0000 (22:16 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 25 Sep 2000 22:16:36 +0000 (22:16 +0000)
lib/url.c

index 514a648..f323143 100644 (file)
--- a/lib/url.c
+++ b/lib/url.c
@@ -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);