summaryrefslogtreecommitdiff
path: root/net-misc/netkit-rsh/files/patches/130_all_pam-nologin.patch
blob: b9e8cb147f348edbef05ace810a9924ecb7ed30c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- a/rlogind/auth.c
+++ b/rlogind/auth.c
@@ -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;
     }