From 5ab66a84426007d5da830b4ffe35067e25fe54f1 Mon Sep 17 00:00:00 2001 From: Damjan Georgievski Date: Mon, 10 Nov 2008 14:28:03 +0100 Subject: [PATCH] Fix compilation of pppd/session.c This fixes a typo that causes a compile error. The makefiles use HAS_SHADOW and not USE_SHADOW. Signed-off-by: Paul Mackerras --- pppd/session.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pppd/session.c b/pppd/session.c index bb7c5fa..32901a2 100644 --- a/pppd/session.c +++ b/pppd/session.c @@ -73,7 +73,7 @@ #include #include #include -#ifdef USE_SHADOW +#ifdef HAS_SHADOW #include #endif #include -- 2.11.4.GIT