ldap/imap: Fixed spelling mistake in comments and variable names

Reported-by: Michael Osipov
This commit is contained in:
Steve Holme
2015-01-07 13:50:56 +00:00
parent c07857e063
commit 4626f31d0e
2 changed files with 27 additions and 27 deletions

View File

@@ -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);