aboutsummaryrefslogtreecommitdiff
path: root/lib/ftp.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-09-28 09:15:19 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-09-28 09:15:19 +0000
commitae2ecfc5cb29b03364c76308617facf844487030 (patch)
tree7ee6b403f8ac35a965431016fa3519cbe1b21863 /lib/ftp.h
parentcc610f0d1fc5e48fddf6d598bec4b80b2e446838 (diff)
removed the socket argument from some functions that always passed in the
same socket and it was available from the passed-in struct anyway!
Diffstat (limited to 'lib/ftp.h')
-rw-r--r--lib/ftp.h5
1 files changed, 2 insertions, 3 deletions
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