diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-10-30 00:24:15 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-10-30 00:24:15 +0100 |
commit | fd41463245daf6d8fc01075326058b2e3ad86f79 (patch) | |
tree | a7e8f36211c6296d35f80489a47a6d1a94c2d334 | |
parent | 4bdb5b036335fd5a393948ab77a01743cf739db6 (diff) |
fix filter
-rw-r--r-- | src/backenddb/plugin_merchantdb_postgres.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c index 40e9cf5b..36e9ce82 100644 --- a/src/backenddb/plugin_merchantdb_postgres.c +++ b/src/backenddb/plugin_merchantdb_postgres.c @@ -4546,9 +4546,11 @@ lookup_reserves_cb (void *cls, case TALER_EXCHANGE_YNA_YES: if (0 == active) continue; + break; case TALER_EXCHANGE_YNA_NO: if (0 != active) continue; + break; case TALER_EXCHANGE_YNA_ALL: break; } |