diff options
Diffstat (limited to 'networking/httpd.c')
-rw-r--r-- | networking/httpd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/httpd.c b/networking/httpd.c index 4da7e5c..78c6f4d 100644 --- a/networking/httpd.c +++ b/networking/httpd.c @@ -1733,7 +1733,7 @@ static int checkPerm(const char *path, const char *request) && pp[3] == '$' && pp[4] ) { pp++; - cipher = pw_encrypt(u+1, pp); + cipher = pw_encrypt(u+1, pp, 1); if (strcmp(cipher, pp) == 0) goto set_remoteuser_var; /* Ok */ /* unauthorized */ @@ -2352,7 +2352,7 @@ int httpd_main(int argc ATTRIBUTE_UNUSED, char **argv) #endif #if ENABLE_FEATURE_HTTPD_AUTH_MD5 if (opt & OPT_MD5) { - puts(pw_encrypt(pass, "$1$")); + puts(pw_encrypt(pass, "$1$", 1)); return 0; } #endif |