Belatedly add openpam_findenv.c to the Makefile, and add a missing

#include that I hadn't spotted since it wasn't getting compiled.

Sponsored by:	DARPA, NAI Labs


git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@11 185d5e19-27fe-0310-9dcf-9bff6b9f3609
This commit is contained in:
Dag-Erling Smørgrav 2002-02-01 21:19:32 +00:00
parent d57c2aa6ec
commit ed8e188f27
2 changed files with 3 additions and 0 deletions

View File

@ -44,6 +44,7 @@ CFLAGS += -I${.CURDIR}/../include
SRCS =
SRCS += openpam_dispatch.c
SRCS += openpam_findenv.c
SRCS += openpam_log.c
SRCS += openpam_ttyconv.c
SRCS += pam_acct_mgmt.c

View File

@ -34,6 +34,8 @@
* $Id$
*/
#include <string.h>
#include <security/pam_appl.h>
#include "openpam_impl.h"