ITS#9596 Let libldap keep explicit port 0 as that

This commit is contained in:
Ondřej Kuzník 2019-07-16 19:04:01 +02:00 committed by Quanah Gibson-Mount
parent e96bfd088e
commit e3905c9898

View File

@ -940,6 +940,7 @@ ldap_url_parse_ext( LDAP_CONST char *url_in, LDAPURLDesc **ludpp, unsigned flags
q = strchr( url, ':' );
}
i = !q; /* i is set iff we don't have a port specified */
if ( q != NULL ) {
char *next;
@ -968,7 +969,7 @@ ldap_url_parse_ext( LDAP_CONST char *url_in, LDAPURLDesc **ludpp, unsigned flags
}
}
if ( ( flags & LDAP_PVT_URL_PARSE_DEF_PORT ) && ludp->lud_port == 0 ) {
if ( ( flags & LDAP_PVT_URL_PARSE_DEF_PORT ) && i ) {
if ( strcmp( ludp->lud_scheme, "ldaps" ) == 0 ) {
ludp->lud_port = LDAPS_PORT;
} else {