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.
14 lines
531 B
14 lines
531 B
--- netkit-rsh-0.17-pre20000412/rlogind/auth.c.orig Tue Mar 19 11:46:29 2002 |
|
+++ netkit-rsh-0.17-pre20000412/rlogind/auth.c Wed Apr 17 16:35:43 2002 |
|
@@ -127,7 +127,10 @@ |
|
|
|
network_confirm(); |
|
retval = attempt_auth(); |
|
- if (retval != PAM_SUCCESS) { |
|
+ if ((retval == PAM_ACCT_EXPIRED) || (retval == PAM_PERM_DENIED)) { |
|
+ syslog(LOG_ERR, "PAM authentication denied for in.rlogind"); |
|
+ exit(1); |
|
+ } else if (retval != PAM_SUCCESS) { |
|
syslog(LOG_ERR, "PAM authentication failed for in.rlogind"); |
|
return -1; |
|
}
|
|
|