Do not try to use PAM for password authentication, as it is

already (and far better) supported by the challenge/response
authentication mechanism.
This commit is contained in:
Dag-Erling Smørgrav 2002-07-10 23:05:13 +00:00
parent 645ca8e839
commit 77741b874a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=99748

View File

@ -37,12 +37,20 @@
#include "includes.h"
RCSID("$OpenBSD: auth-passwd.c,v 1.27 2002/05/24 16:45:16 stevesk Exp $");
RCSID("$FreeBSD$");
#include "packet.h"
#include "log.h"
#include "servconf.h"
#include "auth.h"
/*
* Do not try to use PAM for password authentication, as it is
* already (and far better) supported by the challenge/response
* authentication mechanism.
*/
#undef USE_PAM
#if !defined(USE_PAM) && !defined(HAVE_OSF_SIA)
/* Don't need any of these headers for the PAM or SIA cases */
# ifdef HAVE_CRYPT_H