diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-02-23 18:57:18 +0000 |
---|---|---|
committer | unknown <Steve Holme@steve.digital-frog.com> | 2013-02-23 19:04:13 +0000 |
commit | 8960d81b0d0d883b3a755b02046d1622f6a2de8c (patch) | |
tree | ba09369aaeae55449d5730c6e3b34dc904a4badd /lib | |
parent | 429820b180ffd5e43028722e36b013bad6c215ac (diff) |
imap: Minor correction of comments for max line length
Diffstat (limited to 'lib')
-rw-r--r-- | lib/imap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/imap.c b/lib/imap.c index 3fb482862..8687f71cd 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'; |