]> granicus.if.org Git - curl/commitdiff
ldap/imap: Fixed spelling mistake in comments and variable names
authorSteve Holme <steve_holme@hotmail.com>
Wed, 7 Jan 2015 13:50:56 +0000 (13:50 +0000)
committerSteve Holme <steve_holme@hotmail.com>
Wed, 7 Jan 2015 13:50:56 +0000 (13:50 +0000)
Reported-by: Michael Osipov
lib/imap.c
lib/ldap.c

index 86cfcf51e611d0d13791ff4513bc931634f1639d..767ac804b37043582ceca727ffdbc5c7a8793a8f 100644 (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);
 
index 83cb4f13beca6419b32b05c25753d046225799f2..0370d4bc6f091ca949c0b370e61f80a68da94c91 100644 (file)
@@ -733,24 +733,24 @@ static int _ldap_url_parse2 (const struct connectdata *conn, LDAPURLDesc *ludp)
 
   if(*p) {
     char *dn = p;
-    char *unescapped;
+    char *unescaped;
 
     LDAP_TRACE (("DN '%s'\n", dn));
 
     /* Unescape the DN */
-    unescapped = curl_easy_unescape(conn->data, dn, 0, NULL);
-    if(!unescapped) {
+    unescaped = curl_easy_unescape(conn->data, dn, 0, NULL);
+    if(!unescaped) {
       rc = LDAP_NO_MEMORY;
 
       goto quit;
     }
 
 #if defined(CURL_LDAP_WIN)
-    /* Convert the unescapped string to a tchar */
-    ludp->lud_dn = Curl_convert_UTF8_to_tchar(unescapped);
+    /* Convert the unescaped string to a tchar */
+    ludp->lud_dn = Curl_convert_UTF8_to_tchar(unescaped);
 
-    /* Free the unescapped string as we are done with it */
-    Curl_unicodefree(unescapped);
+    /* Free the unescaped string as we are done with it */
+    Curl_unicodefree(unescaped);
 
     if(!ludp->lud_dn) {
       rc = LDAP_NO_MEMORY;
@@ -758,7 +758,7 @@ static int _ldap_url_parse2 (const struct connectdata *conn, LDAPURLDesc *ludp)
       goto quit;
     }
 #else
-    ludp->lud_dn = unescapped;
+    ludp->lud_dn = unescaped;
 #endif
   }
 
@@ -797,13 +797,13 @@ static int _ldap_url_parse2 (const struct connectdata *conn, LDAPURLDesc *ludp)
     }
 
     for(i = 0; i < count; i++) {
-      char *unescapped;
+      char *unescaped;
 
       LDAP_TRACE (("attr[%d] '%s'\n", i, attributes[i]));
 
       /* Unescape the attribute */
-      unescapped = curl_easy_unescape(conn->data, attributes[i], 0, NULL);
-      if(!unescapped) {
+      unescaped = curl_easy_unescape(conn->data, attributes[i], 0, NULL);
+      if(!unescaped) {
         Curl_safefree(attributes);
 
         rc = LDAP_NO_MEMORY;
@@ -812,11 +812,11 @@ static int _ldap_url_parse2 (const struct connectdata *conn, LDAPURLDesc *ludp)
       }
 
 #if defined(CURL_LDAP_WIN)
-      /* Convert the unescapped string to a tchar */
-      ludp->lud_attrs[i] = Curl_convert_UTF8_to_tchar(unescapped);
+      /* Convert the unescaped string to a tchar */
+      ludp->lud_attrs[i] = Curl_convert_UTF8_to_tchar(unescaped);
 
-      /* Free the unescapped string as we are done with it */
-      Curl_unicodefree(unescapped);
+      /* Free the unescaped string as we are done with it */
+      Curl_unicodefree(unescaped);
 
       if(!ludp->lud_attrs[i]) {
         Curl_safefree(attributes);
@@ -826,7 +826,7 @@ static int _ldap_url_parse2 (const struct connectdata *conn, LDAPURLDesc *ludp)
         goto quit;
       }
 #else
-      ludp->lud_attrs[i] = unescapped;
+      ludp->lud_attrs[i] = unescaped;
 #endif
 
       ludp->lud_attrs_dups++;
@@ -865,24 +865,24 @@ static int _ldap_url_parse2 (const struct connectdata *conn, LDAPURLDesc *ludp)
 
   if(*p) {
     char *filter = p;
-    char *unescapped;
+    char *unescaped;
 
     LDAP_TRACE (("filter '%s'\n", filter));
 
     /* Unescape the filter */
-    unescapped = curl_easy_unescape(conn->data, filter, 0, NULL);
-    if(!unescapped) {
+    unescaped = curl_easy_unescape(conn->data, filter, 0, NULL);
+    if(!unescaped) {
       rc = LDAP_NO_MEMORY;
 
       goto quit;
     }
 
 #if defined(CURL_LDAP_WIN)
-    /* Convert the unescapped string to a tchar */
-    ludp->lud_filter = Curl_convert_UTF8_to_tchar(unescapped);
+    /* Convert the unescaped string to a tchar */
+    ludp->lud_filter = Curl_convert_UTF8_to_tchar(unescaped);
 
-    /* Free the unescapped string as we are done with it */
-    Curl_unicodefree(unescapped);
+    /* Free the unescaped string as we are done with it */
+    Curl_unicodefree(unescaped);
 
     if(!ludp->lud_filter) {
       rc = LDAP_NO_MEMORY;
@@ -890,7 +890,7 @@ static int _ldap_url_parse2 (const struct connectdata *conn, LDAPURLDesc *ludp)
       goto quit;
     }
 #else
-    ludp->lud_filter = unescapped;
+    ludp->lud_filter = unescaped;
 #endif
   }