summaryrefslogtreecommitdiff
path: root/libcli
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2014-11-14 14:12:26 +0100
committerKarolin Seeger <kseeger@samba.org>2014-11-24 21:17:08 +0100
commitc4ae1b4d1796d57fbf18e1b38b1f3896f18c9378 (patch)
tree49ea7eb17816cdc7e9dc5f3fc6f09f93edda192b /libcli
parentfed8ae0a3923e425f5d45af3c7e5d87e9e6c6507 (diff)
downloadsamba-c4ae1b4d1796d57fbf18e1b38b1f3896f18c9378.tar.gz
samba: pass down size_t instead of int to add_string_to_array().
Guenther Signed-off-by: Günther Deschner <gd@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org> Autobuild-User(master): Günther Deschner <gd@samba.org> Autobuild-Date(master): Mon Nov 17 19:53:22 CET 2014 on sn-devel-104 The last 3 patches address BUG: https://bugzilla.samba.org/show_bug.cgi?id=10942 cleanup add_string_to_array and usage
Diffstat (limited to 'libcli')
-rw-r--r--libcli/ldap/ldap_message.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcli/ldap/ldap_message.h b/libcli/ldap/ldap_message.h
index eb7e6206b15..b41f7f5497b 100644
--- a/libcli/ldap/ldap_message.h
+++ b/libcli/ldap/ldap_message.h
@@ -104,7 +104,7 @@ struct ldap_SearchRequest {
uint32_t sizelimit;
bool attributesonly;
struct ldb_parse_tree *tree;
- int num_attributes;
+ size_t num_attributes;
const char * const *attributes;
};