diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-04-02 11:19:07 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-04-02 11:19:07 +0200 |
commit | 6ae58fdc8e11cefdbee3419d52151e43f8a09590 (patch) | |
tree | 97f424d663206fe062abb20d170d7bad78bc1f1e | |
parent | b832adb71a314b3eb283007c23a22eed141a9a61 (diff) |
properly use boolean
-rw-r--r-- | src/backend/taler-merchant-httpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/taler-merchant-httpd.c b/src/backend/taler-merchant-httpd.c index fdb752c9..a6bce84d 100644 --- a/src/backend/taler-merchant-httpd.c +++ b/src/backend/taler-merchant-httpd.c @@ -1890,7 +1890,7 @@ url_handler (void *cls, if ( (NULL == hc->instance) && - (GNUNET_YES != hc->rh->skip_instance) ) + (! hc->rh->skip_instance) ) return TALER_MHD_reply_with_error (connection, MHD_HTTP_NOT_FOUND, TALER_EC_MERCHANT_GENERIC_INSTANCE_UNKNOWN, |