From: Jiri Hruska Date: Sun, 24 Feb 2013 11:21:53 +0000 (+0100) Subject: imap: Corrected comment in imap_endofresp() X-Git-Tag: curl-7_30_0~279 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=324b7fe47b863eaa99475dd86b9f73059fb26ab1;p=thirdparty%2Fcurl.git imap: Corrected comment in imap_endofresp() --- diff --git a/lib/imap.c b/lib/imap.c index 33f8b1d2ee..6bd8c429cb 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -334,7 +334,7 @@ static bool imap_endofresp(struct connectdata *conn, char *line, size_t len, size_t id_len = strlen(id); size_t wordlen; - /* Do we have a command response? */ + /* Do we have a tagged command response? */ if(len >= id_len + 3) { if(!memcmp(id, line, id_len) && line[id_len] == ' ') { *resp = line[id_len + 1]; /* O, N or B */