From e25576d211ee35a2f7a955536089adaad947d9b1 Mon Sep 17 00:00:00 2001 From: nsayer Date: Thu, 17 May 2001 16:28:11 +0000 Subject: Make the PAM user-override actually override the correect thing. --- crypto/telnet/libtelnet/sra.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crypto/telnet') diff --git a/crypto/telnet/libtelnet/sra.c b/crypto/telnet/libtelnet/sra.c index 3f04799..9c033c9 100644 --- a/crypto/telnet/libtelnet/sra.c +++ b/crypto/telnet/libtelnet/sra.c @@ -574,7 +574,7 @@ auth_conv(int num_msg, const struct pam_message **msg, } /* - * The PAM version as a side effect may put a new username in *user. + * The PAM version as a side effect may put a new username in *name. */ int check_user(const char *name, const char *pass) { @@ -623,11 +623,11 @@ int check_user(const char *name, const char *pass) */ if ((e = pam_get_item(pamh, PAM_USER, &item)) == PAM_SUCCESS) { - strcpy(user, (const char *) item); + strcpy(name, (const char *) item); } else syslog(LOG_ERR, "Couldn't get PAM_USER: %s", pam_strerror(pamh, e)); - if (isroot(user) && !rootterm(line)) + if (isroot(name) && !rootterm(line)) rval = 0; else rval = 1; -- cgit v1.1