From: Steve Holme Date: Sun, 10 Mar 2013 12:47:28 +0000 (+0000) Subject: imap: Added some missing comments to imap_sendf() X-Git-Tag: curl-7_30_0~146 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cbea345f612e2c0e2a734bd52b002eb7c93bf0cc;p=curl imap: Added some missing comments to imap_sendf() --- diff --git a/lib/imap.c b/lib/imap.c index 668ef9f7b..803c65366 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -236,10 +236,12 @@ static CURLcode imap_sendf(struct connectdata *conn, const char *fmt, ...) snprintf(imapc->resptag, sizeof(imapc->resptag), "%c%03d", 'A' + (conn->connection_id % 26), imapc->cmdid); + /* Prefix the format with the tag */ taggedfmt = aprintf("%s %s", imapc->resptag, fmt); if(!taggedfmt) return CURLE_OUT_OF_MEMORY; + /* Send the data with the tag */ result = Curl_pp_vsendf(&imapc->pp, taggedfmt, ap); Curl_safefree(taggedfmt);