]> git.sur5r.net Git - openldap/commitdiff
Drop the _s from the ldap_perror argument to be consistent with other
authorKurt Zeilenga <kurt@openldap.org>
Mon, 8 Feb 1999 04:07:49 +0000 (04:07 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Mon, 8 Feb 1999 04:07:49 +0000 (04:07 +0000)
ldap commands.

clients/tools/ldappasswd.c

index b8ef876c6cd725ae9af9e7326c3e5187b165faa3..da2473a463b925e3abbee67fbed2499cd9cd83c4 100644 (file)
@@ -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);
                }