Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nadezhda Ivanova
OpenLDAP
Commits
5f935298
Commit
5f935298
authored
Mar 15, 2021
by
Tero Saarni
Committed by
Quanah Gibson-Mount
Mar 15, 2021
Browse files
ITS
#9419
fix comparison
parent
267fe028
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/libldap/url.c
View file @
5f935298
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment