summaryrefslogtreecommitdiff
path: root/md5crypt.c
diff options
context:
space:
mode:
Diffstat (limited to 'md5crypt.c')
-rw-r--r--md5crypt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/md5crypt.c b/md5crypt.c
index 15af422a6..16bcf33a1 100644
--- a/md5crypt.c
+++ b/md5crypt.c
@@ -17,7 +17,7 @@
17 17
18#include "config.h" 18#include "config.h"
19 19
20#ifdef HAVE_MD5_PASSWORDS 20#if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
21 21
22#include <unistd.h> 22#include <unistd.h>
23#include <string.h> 23#include <string.h>
@@ -163,4 +163,4 @@ md5_crypt(const char *pw, const char *salt)
163 return passwd; 163 return passwd;
164} 164}
165 165
166#endif /* HAVE_MD5_PASSWORDS */ 166#endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */