aboutsummaryrefslogtreecommitdiff
path: root/lib/sendf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sendf.c')
-rw-r--r--lib/sendf.c4
1 files changed, 2 insertions, 2 deletions
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);