Skip to content
Snippets Groups Projects
Commit 66d9bf40 authored by Howard Chu's avatar Howard Chu
Browse files

ITS#2016 Don't include <openssl/des.h> if we're also including <krb.h>.

parent 9acb78c7
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,11 @@
#include <ac/string.h>
#include <ac/unistd.h>
#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 <openssl/des.h>
#endif /* SLAPD_LMHASH */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment