From ed8e188f279e599c7d914c96f3b176b1ba9b0ab0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Fri, 1 Feb 2002 21:19:32 +0000 Subject: [PATCH] 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 --- lib/Makefile | 1 + lib/openpam_findenv.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/lib/Makefile b/lib/Makefile index 2c03d6d..6dcaa52 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -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 diff --git a/lib/openpam_findenv.c b/lib/openpam_findenv.c index c92d6d3..2a591d3 100644 --- a/lib/openpam_findenv.c +++ b/lib/openpam_findenv.c @@ -34,6 +34,8 @@ * $Id$ */ +#include + #include #include "openpam_impl.h"