Sophie

Sophie

distrib > Mageia > 3 > i586 > media > core-release-src > by-pkgid > 08ee626a2e43af09801d4c397012acc2 > files > 20

rsh-0.17-28.mga3.src.rpm

--- 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;
     }