about summary refs log tree commit diff
path: root/src/crypt/crypt_r.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypt/crypt_r.c')
-rw-r--r--src/crypt/crypt_r.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/crypt/crypt_r.c b/src/crypt/crypt_r.c
index 1c7f9cf0..3257e8b9 100644
--- a/src/crypt/crypt_r.c
+++ b/src/crypt/crypt_r.c
@@ -13,10 +13,8 @@ char *__crypt_r(const char *key, const char *salt, struct crypt_data *data)
 {
 	char *output = (char *)data;
 	if (salt[0] == '$' && salt[1] && salt[2]) {
-#if 0
 		if (salt[1] == '1' && salt[2] == '$')
 			return __crypt_md5(key, salt, output);
-#endif
 		if (salt[1] == '2' && salt[3] == '$')
 			return __crypt_blowfish(key, salt, output);
 		if (salt[1] == '5' && salt[2] == '$')