From ae2ecfc5cb29b03364c76308617facf844487030 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 28 Sep 2001 09:15:19 +0000 Subject: removed the socket argument from some functions that always passed in the same socket and it was available from the passed-in struct anyway! --- lib/ftp.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lib/ftp.h') diff --git a/lib/ftp.h b/lib/ftp.h index bce339563..dc71b7e19 100644 --- a/lib/ftp.h +++ b/lib/ftp.h @@ -28,11 +28,10 @@ CURLcode Curl_ftp_done(struct connectdata *conn); CURLcode Curl_ftp_connect(struct connectdata *conn); CURLcode Curl_ftp_disconnect(struct connectdata *conn); -size_t Curl_ftpsendf(int fd, struct connectdata *, const char *fmt, ...); +size_t Curl_ftpsendf(struct connectdata *, const char *fmt, ...); /* The kerberos stuff needs this: */ -int Curl_GetFTPResponse(int sockfd, char *buf, - struct connectdata *conn, +int Curl_GetFTPResponse(char *buf, struct connectdata *conn, int *ftpcode); #endif -- cgit v1.2.3