summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2013-08-09 23:39:09 +0200
committerDaniel Stenberg <daniel@haxx.se>2013-08-09 23:39:09 +0200
commit2af0b10c9504347ec6393792036dd43f2dae0679 (patch)
treec39c5f0842ee2e1cda1b0735b25a32bf7b3f52a6
parent08adecc9a1553e895373f4e3ce357cb37c49ffb8 (diff)
downloadgnurl-2af0b10c9504347ec6393792036dd43f2dae0679.tar.gz
gnurl-2af0b10c9504347ec6393792036dd43f2dae0679.tar.bz2
gnurl-2af0b10c9504347ec6393792036dd43f2dae0679.zip
comments: remove old and wrong multi/easy interface statements
-rw-r--r--lib/ftp.c4
-rw-r--r--lib/imap.c3
-rw-r--r--lib/multi.c4
-rw-r--r--lib/pop3.c3
-rw-r--r--lib/smtp.c3
5 files changed, 7 insertions, 10 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index 80b4a0487..c9b97ddb5 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -3213,8 +3213,8 @@ static CURLcode ftp_init(struct connectdata *conn)
* the connection phase.
*
* The variable 'done' points to will be TRUE if the protocol-layer connect
- * phase is done when this function returns, or FALSE is not. When called as
- * a part of the easy interface, it will always be TRUE.
+ * phase is done when this function returns, or FALSE if not.
+ *
*/
static CURLcode ftp_connect(struct connectdata *conn,
bool *done) /* see description above */
diff --git a/lib/imap.c b/lib/imap.c
index 5d758d455..13e9784a4 100644
--- a/lib/imap.c
+++ b/lib/imap.c
@@ -1695,8 +1695,7 @@ static int imap_getsock(struct connectdata *conn, curl_socket_t *socks,
* connection phase.
*
* The variable 'done' points to will be TRUE if the protocol-layer connect
- * phase is done when this function returns, or FALSE is not. When called as
- * a part of the easy interface, it will always be TRUE.
+ * phase is done when this function returns, or FALSE if not.
*/
static CURLcode imap_connect(struct connectdata *conn, bool *done)
{
diff --git a/lib/multi.c b/lib/multi.c
index b64092a5d..476f058c5 100644
--- a/lib/multi.c
+++ b/lib/multi.c
@@ -2567,8 +2567,8 @@ void Curl_expire(struct SessionHandle *data, long milli)
struct timeval *nowp = &data->state.expiretime;
int rc;
- /* this is only interesting for multi-interface using libcurl, and only
- while there is still a multi interface struct remaining! */
+ /* this is only interesting while there is still an associated multi struct
+ remaining! */
if(!multi)
return;
diff --git a/lib/pop3.c b/lib/pop3.c
index 57d40afdb..876987f11 100644
--- a/lib/pop3.c
+++ b/lib/pop3.c
@@ -1421,8 +1421,7 @@ static int pop3_getsock(struct connectdata *conn, curl_socket_t *socks,
* connection phase.
*
* The variable 'done' points to will be TRUE if the protocol-layer connect
- * phase is done when this function returns, or FALSE is not. When called as
- * a part of the easy interface, it will always be TRUE.
+ * phase is done when this function returns, or FALSE if not.
*/
static CURLcode pop3_connect(struct connectdata *conn, bool *done)
{
diff --git a/lib/smtp.c b/lib/smtp.c
index 8bb72aab4..83fb9ec44 100644
--- a/lib/smtp.c
+++ b/lib/smtp.c
@@ -1387,8 +1387,7 @@ static int smtp_getsock(struct connectdata *conn, curl_socket_t *socks,
* the connection phase.
*
* The variable pointed to by 'done' will be TRUE if the protocol-layer
- * connect phase is done when this function returns, or FALSE if not. When
- * called as a part of the easy interface, it will always be TRUE.
+ * connect phase is done when this function returns, or FALSE if not.
*/
static CURLcode smtp_connect(struct connectdata *conn, bool *done)
{