]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
imap: Minor correction of comments for max line length
authorSteve Holme <steve_holme@hotmail.com>
Sat, 23 Feb 2013 18:57:18 +0000 (18:57 +0000)
committerunknown <Steve Holme@steve.digital-frog.com>
Sat, 23 Feb 2013 19:04:13 +0000 (19:04 +0000)
lib/imap.c

index 3fb4828629a4d9e5eb1f9890f5c0fd107fbb7678..8687f71cd2d0b2e8863c6023654d9c7f6ee41152 100644 (file)
@@ -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';