Skip to content
Snippets Groups Projects
Commit 50fc6b18 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Drop the _s from the ldap_perror argument to be consistent with other

ldap commands.
parent 36a06168
No related branches found
No related tags found
No related merge requests found
......@@ -316,7 +316,7 @@ modify_dn (LDAP * ld, char *targetdn, char *pwattr, char *oldpw,
mods[1] =NULL;
if (!noupdates && (ret = ldap_modify_s (ld, targetdn, mods)) != LDAP_SUCCESS)
ldap_perror (ld, "ldap_modify_s");
ldap_perror (ld, "ldap_modify");
free (hashed_pw);
free (buf);
......@@ -623,7 +623,7 @@ main (int argc, char *argv[])
i != LDAP_TIMELIMIT_EXCEEDED &&
i != LDAP_SIZELIMIT_EXCEEDED)
{
ldap_perror (ld, "ldap_search_s");
ldap_perror (ld, "ldap_search");
exit (1);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment