From 66d9bf404b38579c84b5c0c0d238bfe58910f520 Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Sat, 10 Aug 2002 00:22:52 +0000 Subject: [PATCH] ITS#2016 Don't include if we're also including . --- libraries/liblutil/passwd.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libraries/liblutil/passwd.c b/libraries/liblutil/passwd.c index a63b475255..0d2d5aa355 100644 --- a/libraries/liblutil/passwd.c +++ b/libraries/liblutil/passwd.c @@ -23,7 +23,11 @@ #include #include -#ifdef SLAPD_LMHASH +/* KPASSWD/krb.h brings in a conflicting des.h so don't use both. + * configure currently requires OpenSSL to enable LMHASH. Obviously + * this requirement can be fulfilled by the KRB DES library as well. + */ +#if defined(SLAPD_LMHASH) && !defined(SLAPD_KPASSWD) # include #endif /* SLAPD_LMHASH */ -- 2.39.5