imap: Corrected comment in imap_endofresp()
authorJiri Hruska <jirka@fud.cz>
Sun, 24 Feb 2013 11:21:53 +0000 (12:21 +0100)
committerSteve Holme <steve_holme@hotmail.com>
Sun, 24 Feb 2013 12:02:55 +0000 (12:02 +0000)
lib/imap.c

index 33f8b1d..6bd8c42 100644 (file)
@@ -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 */