Commit cf750eb3 authored by Rafaël Carré's avatar Rafaël Carré

httpdAuthOk: fix mismatched parameters order

parent b9f216c1
......@@ -1915,7 +1915,7 @@ static void httpd_ClientTlsHandshake( httpd_client_t *cl )
}
}
static bool httpdAuthOk(const char *b64, const char *user, const char *pass)
static bool httpdAuthOk(const char *user, const char *pass, const char *b64)
{
if (!*user && !*pass)
return true;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment