summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2009-11-06 18:35:17 +0100
committerMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2010-03-08 10:29:25 +0100
commit95d726f3018ef5d249f89d56bde24b7ee0c24ecf (patch)
tree1589e9355e557b099bd81842eb4f555ebc823525
parentb33a340e0a2dcf972f0e53d3ff28a17eb42e4582 (diff)
downloadsamba-95d726f3018ef5d249f89d56bde24b7ee0c24ecf.tar.gz
samba-95d726f3018ef5d249f89d56bde24b7ee0c24ecf.tar.bz2
samba-95d726f3018ef5d249f89d56bde24b7ee0c24ecf.zip
LDB:LDAP backend - change a counter variable to "unsigned"
-rw-r--r--source4/lib/ldb/ldb_ldap/ldb_ldap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/ldb_ldap/ldb_ldap.c b/source4/lib/ldb/ldb_ldap/ldb_ldap.c
index 4e88cc487b..b7d74d4b9f 100644
--- a/source4/lib/ldb/ldb_ldap/ldb_ldap.c
+++ b/source4/lib/ldb/ldb_ldap/ldb_ldap.c
@@ -483,8 +483,8 @@ static bool lldb_parse_result(struct lldb_context *ac, LDAPMessage *result)
bool callback_failed;
bool request_done;
bool lret;
+ unsigned int i;
int ret;
- int i;
ldb = ldb_module_get_ctx(ac->module);