summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamjan Georgievski <gdamjan@gmail.com>2008-11-10 14:28:03 +0100
committerPaul Mackerras <paulus@samba.org>2008-11-25 22:43:02 +1100
commit5ab66a84426007d5da830b4ffe35067e25fe54f1 (patch)
treeef744bff6efc9fbc317d8a5f8568e979f4179767
parentee12d1706604759d25cd1508bd7e0fbf47ea536a (diff)
downloadppp-5ab66a84426007d5da830b4ffe35067e25fe54f1.tar.gz
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 <paulus@samba.org>
-rw-r--r--pppd/session.c2
1 files changed, 1 insertions, 1 deletions
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 <string.h>
#include <pwd.h>
#include <crypt.h>
-#ifdef USE_SHADOW
+#ifdef HAS_SHADOW
#include <shadow.h>
#endif
#include <time.h>