diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-09-10 19:30:07 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-09-10 19:30:07 +0100 |
commit | 2879ffacfa0cf60a0e215d8b1300368390e7548f (patch) | |
tree | 67466c6f6fbcb13cd1bd46ed07174a36248568ac /lib/ldap.c | |
parent | d89eb55906104d850d6c7f8ac4d045c5846fdde7 (diff) | |
download | curl-2879ffacfa0cf60a0e215d8b1300368390e7548f.tar.gz |
ldap.c: Corrected build error from commit 857f999353f333
Diffstat (limited to 'lib/ldap.c')
-rw-r--r-- | lib/ldap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ldap.c b/lib/ldap.c index 24b8634af..f14261ff4 100644 --- a/lib/ldap.c +++ b/lib/ldap.c @@ -84,9 +84,9 @@ typedef struct { int lud_scope; char *lud_filter; char **lud_exts; - size lud_attrs_dups; /* how many were dup'ed, this field is not in the - "real" struct so can only be used in code without - HAVE_LDAP_URL_PARSE defined */ + size_t lud_attrs_dups; /* how many were dup'ed, this field is not in the + "real" struct so can only be used in code + without HAVE_LDAP_URL_PARSE defined */ } CURL_LDAPURLDesc; #undef LDAPURLDesc |