From: Jaroslav Kysela Date: Mon, 22 Oct 2018 07:01:15 +0000 (+0200) Subject: access: do not use + character for the auth code (HTTP deescaping), issue #5274 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3e130baba4318993e8269d781fda999013a4be81;p=thirdparty%2Ftvheadend.git access: do not use + character for the auth code (HTTP deescaping), issue #5274 --- diff --git a/src/access.c b/src/access.c index 1210a9d49..ba73c700d 100644 --- a/src/access.c +++ b/src/access.c @@ -1961,7 +1961,7 @@ static void passwd_entry_new_auth(passwd_entry_t *pw) { static const char table[] = - "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-"; + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-."; uint8_t buf[20], *in; char id[42], *dst; unsigned int bits;