You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.4 KiB
32 lines
1.4 KiB
--- netkit-rsh-0.17-pre20000412/rexecd/rexecd.c.sectty Sat Oct 2 17:50:52 1999 |
|
+++ netkit-rsh-0.17-pre20000412/rexecd/rexecd.c Mon Feb 5 16:42:29 2001 |
|
@@ -300,6 +300,7 @@ |
|
PAM_password = pass; |
|
pam_error = pam_start("rexec", PAM_username, &PAM_conversation,&pamh); |
|
PAM_BAIL; |
|
+ (void) pam_set_item (pamh, PAM_TTY, "rexec"); /* we don't have a tty yet! */ |
|
pam_error = pam_authenticate(pamh, 0); |
|
PAM_BAIL; |
|
pam_error = pam_acct_mgmt(pamh, 0); |
|
--- netkit-rsh-0.17-pre20000412/rlogind/auth.c.sectty Mon Feb 5 16:43:46 2001 |
|
+++ netkit-rsh-0.17-pre20000412/rlogind/auth.c Mon Feb 5 16:44:28 2001 |
|
@@ -123,7 +123,7 @@ |
|
pam_set_item(pamh, PAM_USER, localuser); |
|
pam_set_item(pamh, PAM_RUSER, remoteuser); |
|
pam_set_item(pamh, PAM_RHOST, host); |
|
- pam_set_item(pamh, PAM_TTY, "tty"); /* ? */ |
|
+ pam_set_item(pamh, PAM_TTY, "rlogin"); /* we don't have a tty yet! */ |
|
|
|
network_confirm(); |
|
retval = attempt_auth(); |
|
--- netkit-rsh-0.17-pre20000412/rshd/rshd.c.sectty Mon Feb 5 16:43:52 2001 |
|
+++ netkit-rsh-0.17-pre20000412/rshd/rshd.c Mon Feb 5 16:44:42 2001 |
|
@@ -243,7 +243,7 @@ |
|
} |
|
pam_set_item (pamh, PAM_RUSER, remuser); |
|
pam_set_item (pamh, PAM_RHOST, hostname); |
|
- pam_set_item (pamh, PAM_TTY, "tty"); |
|
+ pam_set_item (pamh, PAM_TTY, "rsh"); /* we don't use a tty, so punt */ |
|
|
|
retcode = pam_authenticate(pamh, 0); |
|
if (retcode == PAM_SUCCESS) {
|
|
|