From: Kurt Zeilenga Date: Mon, 8 Feb 1999 04:07:49 +0000 (+0000) Subject: Drop the _s from the ldap_perror argument to be consistent with other X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~616 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=50fc6b18d5bbccf61f6d49bc9108ce36e2cbcc62;p=openldap Drop the _s from the ldap_perror argument to be consistent with other ldap commands. --- diff --git a/clients/tools/ldappasswd.c b/clients/tools/ldappasswd.c index b8ef876c6c..da2473a463 100644 --- a/clients/tools/ldappasswd.c +++ b/clients/tools/ldappasswd.c @@ -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); }