From: Steve Holme Date: Sat, 23 Feb 2013 18:57:18 +0000 (+0000) Subject: imap: Minor correction of comments for max line length X-Git-Tag: curl-7_30_0~289 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8960d81b0d0d883b3a755b02046d1622f6a2de8c;p=thirdparty%2Fcurl.git imap: Minor correction of comments for max line length --- diff --git a/lib/imap.c b/lib/imap.c index 3fb4828629..8687f71cd2 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -1716,9 +1716,9 @@ static CURLcode imap_parse_url_path(struct connectdata *conn) DEBUGF(infof(conn->data, "IMAP URL parameter '%s' = '%s'\n", name, value)); - /* Process known parameters (UIDVALIDITY, UID and SECTION) and create - a virtual URL level as they should be followed by a slash, which needs - to be stripped. Note: Unknown parameters trigger URL_MALFORMAT error */ + /* Process known parameters (UIDVALIDITY, UID and SECTION) and create a + virtual URL level, as they should be followed by a slash, which needs + to be stripped off. Unknown parameters trigger a URL_MALFORMAT error */ if(Curl_raw_equal(name, "UIDVALIDITY") && !imap->uidvalidity) { if(valuelen > 0 && value[valuelen - 1] == '/') value[valuelen - 1] = '\0';