]> git.sur5r.net Git - openldap/commitdiff
Missed on mygetpass call...
authorKurt Zeilenga <kurt@openldap.org>
Fri, 4 Jun 1999 05:30:35 +0000 (05:30 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Fri, 4 Jun 1999 05:30:35 +0000 (05:30 +0000)
clients/ud/auth.c

index 560c702af481f68114149c2bd16a14afe1b7029a..e72e9c744304484a02e119d616efad4d09e78cdd 100644 (file)
@@ -45,7 +45,7 @@ int
 auth( char *who, int implicit )
 {
        int rc;                 /* return code from ldap_bind() */
-       char *passwd = NULL;    /* returned by mygetpass() */
+       char *passwd = NULL;    /* returned by getpass() */
        char **rdns;            /* for fiddling with the DN */
        int authmethod;
        int name_provided;      /* was a name passed in? */
@@ -356,7 +356,7 @@ krbgetpass( char *user, char *inst, char *realm, char *pw, C_Block key )
        sprintf(prompt, "  Enter Kerberos password for %s: ", kauth_name );
 #endif
        do {
-               passwd = mygetpass(prompt);
+               passwd = getpass(prompt);
        } while (passwd != NULL && *passwd == '\0');
        if (passwd == NULL) {
                return(-1);