diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-03-09 22:48:52 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-03-09 22:48:52 +0100 |
commit | ef0ccea3ca567eb45b6c41359d5f86dc01ff7395 (patch) | |
tree | 097d1bc2c69b55ad29d98e6d3aa1b4924c8a997b | |
parent | 01a094683c841b9bf345b8eca2407522eaa37e8d (diff) |
Fix #6785-0017607
-rw-r--r-- | src/backend/taler-merchant-httpd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/taler-merchant-httpd.c b/src/backend/taler-merchant-httpd.c index bc82ee95..a1727a3f 100644 --- a/src/backend/taler-merchant-httpd.c +++ b/src/backend/taler-merchant-httpd.c @@ -1752,8 +1752,7 @@ url_handler (void *cls, (NULL == TMH_default_auth) ); /* Check against selected instance, if we have one */ if (NULL != hc->instance) - auth_ok |= (! auth_malformed) && - (GNUNET_OK == + auth_ok |= (GNUNET_OK == TMH_check_auth (auth, &hc->instance->auth.auth_salt, &hc->instance->auth.auth_hash)); |