mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-09 08:23:35 -05:00
Drop the _s from the ldap_perror argument to be consistent with other
ldap commands.
This commit is contained in:
parent
36a06168c5
commit
50fc6b18d5
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue