From 1b00298b52a2d66126ddec8688001e46b4f45f5b Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 17 Aug 2001 10:14:06 +0000 Subject: modified to use the renamed kerberos functions with Curl_ prefix --- lib/sendf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/sendf.c') diff --git a/lib/sendf.c b/lib/sendf.c index 3e496571c..6097919e0 100644 --- a/lib/sendf.c +++ b/lib/sendf.c @@ -201,7 +201,7 @@ CURLcode Curl_write(struct connectdata *conn, int sockfd, #endif #ifdef KRB4 if(conn->sec_complete) { - bytes_written = sec_write(conn, sockfd, mem, len); + bytes_written = Curl_sec_write(conn, sockfd, mem, len); } else #endif /* KRB4 */ @@ -280,7 +280,7 @@ CURLcode Curl_read(struct connectdata *conn, int sockfd, #endif #ifdef KRB4 if(conn->sec_complete) - nread = sec_read(conn, sockfd, buf, buffersize); + nread = Curl_sec_read(conn, sockfd, buf, buffersize); else #endif nread = sread (sockfd, buf, buffersize); -- cgit v1.2.3