diff options
author | Steve Holme <steve_holme@hotmail.com> | 2015-01-07 13:50:56 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2015-01-07 13:50:56 +0000 |
commit | 4626f31d0ed38fa9afbe50dbd85e8e5f81a1c169 (patch) | |
tree | f8964cc78d81e9d091ff0405cf0ecaa4f0d49825 /lib/imap.c | |
parent | c07857e063a5a553e7896a238056396297dcd0f6 (diff) |
ldap/imap: Fixed spelling mistake in comments and variable names
Reported-by: Michael Osipov
Diffstat (limited to 'lib/imap.c')
-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 86cfcf51e..767ac804b 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -2447,7 +2447,7 @@ static char *imap_atom(const char *str) if(!str) return NULL; - /* Count any unescapped characters */ + /* Count any unescaped characters */ p1 = str; while(*p1) { if(*p1 == '\\') @@ -2460,7 +2460,7 @@ static char *imap_atom(const char *str) p1++; } - /* Does the input contain any unescapped characters? */ + /* Does the input contain any unescaped characters? */ if(!backsp_count && !quote_count && !space_exists) return strdup(str); |