mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 02:59:34 -05:00
ITS#9419 fix comparison
This commit is contained in:
parent
267fe028b5
commit
5f9352986d
1 changed files with 1 additions and 1 deletions
|
|
@ -162,7 +162,7 @@ ldap_is_ldaps_url( LDAP_CONST char *url )
|
|||
return 0;
|
||||
}
|
||||
|
||||
return strcmp(scheme, "ldaps") == 0 || strcmp(scheme, "pldaps");
|
||||
return strcmp(scheme, "ldaps") == 0 || strcmp(scheme, "pldaps") == 0;
|
||||
}
|
||||
|
||||
int
|
||||
|
|
|
|||
Loading…
Reference in a new issue