Displaying 2 results from an estimated 2 matches for "correct_passwd".
Did you mean:
  correct_password
  
1998 Oct 07
1
Re: sshd and PAM [summary]
-----BEGIN PGP SIGNED MESSAGE-----
	Hi,
I''ve got several replies, thank you for them.  Let me summarize:
o Many people say there is a PAMified version of ssh available at
	ftp://ftp.replay.com/pub/crypto/redhat/SRPMS (the source)
	ftp://ftp.replay.com/pub/crypto/redhat/i386  (Intel binaries)
  (there are analogous paths for the other architectures).  The packages
  are made by Jan
1998 Oct 29
0
Digest.
...up(password);
+    if (retval == PAM_SUCCESS)
+      retval = pam_authenticate ((pam_handle_t *)pamh, 0);
+    if (retval == PAM_SUCCESS)
+      retval = pam_acct_mgmt ((pam_handle_t *)pamh, 0);
+    xfree(pampasswd);
+  }
+#else /* HAVE_PAM */
 #ifdef HAVE_OSF1_C2_SECURITY
   if (osf1c2_getprpwent(correct_passwd, saved_pw_name,
 			sizeof(correct_passwd)))
@@ -823,6 +844,7 @@
 #endif /* HAVE_ETC_SHADOW */
 #endif /* HAVE_SCO_ETC_SHADOW */
 #endif /* HAVE_OSF1_C2_SECURITY */
+#endif /* HAVE_PAM */
 
   /* Check for users with no password. */
   if (strcmp(password, "") == 0 && strcmp(corre...