1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

ldap.c: Fixed compilation warning

ldap.c:802: warning: comparison between signed and unsigned integer
            expressions
This commit is contained in:
Steve Holme 2015-01-04 15:16:04 +00:00
parent 3a805c5cc1
commit 747bad7c09

View File

@ -710,7 +710,7 @@ static int _ldap_url_parse2 (const struct connectdata *conn, LDAPURLDesc *ludp)
char *path;
char *p;
char *q;
int i;
size_t i;
if(!conn->data ||
!conn->data->state.path ||