[openssh-commits] [openssh] 01/01: Remove do_pam_set_tty which is dead code.

git+noreply at mindrot.org git+noreply at mindrot.org
Sat Oct 15 04:36:54 AEDT 2016


This is an automated email from the git hooks/post-receive script.

dtucker pushed a commit to branch master
in repository openssh.

commit e0259a82ddd950cfb109ddee86fcebbc09c6bd04
Author: Darren Tucker <dtucker at zip.com.au>
Date:   Sat Oct 15 04:34:46 2016 +1100

    Remove do_pam_set_tty which is dead code.
    
    The callers of do_pam_set_tty were removed in 2008, so this is now dead
    code.  bz#2604, pointed out by jjelen at redhat.com.
---
 auth-pam.c | 12 ------------
 auth-pam.h |  1 -
 2 files changed, 13 deletions(-)

diff --git a/auth-pam.c b/auth-pam.c
index 7a14c89..7d8b292 100644
--- a/auth-pam.c
+++ b/auth-pam.c
@@ -951,18 +951,6 @@ do_pam_account(void)
 }
 
 void
-do_pam_set_tty(const char *tty)
-{
-	if (tty != NULL) {
-		debug("PAM: setting PAM_TTY to \"%s\"", tty);
-		sshpam_err = pam_set_item(sshpam_handle, PAM_TTY, tty);
-		if (sshpam_err != PAM_SUCCESS)
-			fatal("PAM: failed to set PAM_TTY: %s",
-			    pam_strerror(sshpam_handle, sshpam_err));
-	}
-}
-
-void
 do_pam_setcred(int init)
 {
 	sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
diff --git a/auth-pam.h b/auth-pam.h
index f9a3fbf..c47b442 100644
--- a/auth-pam.h
+++ b/auth-pam.h
@@ -29,7 +29,6 @@ void start_pam(Authctxt *);
 void finish_pam(void);
 u_int do_pam_account(void);
 void do_pam_session(void);
-void do_pam_set_tty(const char *);
 void do_pam_setcred(int );
 void do_pam_chauthtok(void);
 int do_pam_putenv(char *, char *);

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list