Fix typo and convert spaces to tabs
authorSimo Sorce <idra@samba.org>
Tue, 9 Mar 2010 21:40:55 +0000 (16:40 -0500)
committerSimo Sorce <idra@samba.org>
Tue, 9 Mar 2010 21:42:05 +0000 (16:42 -0500)
source4/lib/ldb/common/ldb_parse.c

index 6d43000dbc70260e9815a631e981d0a8d41cffea..a6845939a0c87578b098ddf2d7dc08ddcd00e92a 100644 (file)
@@ -54,8 +54,8 @@ static int ldb_parse_hex2char(const char *x)
                else if (h1 >= '0') c = h1 - (int)'0';
                c = c << 4;
                if (h2 >= 'a') c += h2 - (int)'a' + 10;
-               else if (h1 >= 'A') c += h2 - (int)'A' + 10;
-               else if (h1 >= '0') c += h2 - (int)'0';
+               else if (h2 >= 'A') c += h2 - (int)'A' + 10;
+               else if (h2 >= '0') c += h2 - (int)'0';
 
                return c;
        }
@@ -93,8 +93,8 @@ struct ldb_val ldb_binary_decode(void *mem_ctx, const char *str)
                if (str[i] == '\\') {
                        int c;
 
-                        c = ldb_parse_hex2char(&str[i+1]);
-                        if (c == -1) {
+                       c = ldb_parse_hex2char(&str[i+1]);
+                       if (c == -1) {
                                talloc_free(ret.data);
                                memset(&ret, 0, sizeof(ret));
                                return ret;