fix type issues in stdint.h so underlying types of 64-bit types match ABI
[musl] / src / crypt / crypt_r.c
index 1c7f9cf..3257e8b 100644 (file)
@@ -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] == '$')