diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2003-06-01 12:54:03 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2003-06-01 12:54:03 +0000 |
| commit | 31c521e9ea84e8e213bb9298fe5961b65d79654a (patch) | |
| tree | 6198c196f6c160a3b6c1800a13a74dbaf48a8cb8 /contrib/openpam/modules/pam_unix/pam_unix.c | |
| parent | 4cb68ea5f3003414e1bc98748d3c09fdb57454e1 (diff) | |
Notes
Diffstat (limited to 'contrib/openpam/modules/pam_unix/pam_unix.c')
| -rw-r--r-- | contrib/openpam/modules/pam_unix/pam_unix.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/contrib/openpam/modules/pam_unix/pam_unix.c b/contrib/openpam/modules/pam_unix/pam_unix.c index ddcd81bf8022..2283915496b5 100644 --- a/contrib/openpam/modules/pam_unix/pam_unix.c +++ b/contrib/openpam/modules/pam_unix/pam_unix.c @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2002 Networks Associates Technology, Inc. + * Copyright (c) 2002-2003 Networks Associates Technology, Inc. * All rights reserved. * * This software was developed for the FreeBSD Project by ThinkSec AS and @@ -31,7 +31,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $P4: //depot/projects/openpam/modules/pam_unix/pam_unix.c#3 $ + * $P4: //depot/projects/openpam/modules/pam_unix/pam_unix.c#5 $ */ #include <sys/param.h> @@ -42,6 +42,10 @@ #include <string.h> #include <unistd.h> +#ifdef __GLIBC__ +#include <crypt.h> +#endif + #include <security/pam_modules.h> #include <security/pam_appl.h> |
