diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-08-14 14:52:07 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-08-14 14:52:07 +0200 |
commit | cb5f2b4fe52a1a73464e43a9db59505961358684 (patch) | |
tree | cd626e43080ec70c6c35c321d2adb96eeeda1d67 | |
parent | e5cf863cebfa2fdb79f08bda19868e8abb819107 (diff) |
-fix direction
-rw-r--r-- | src/mint-lib/mint_api_refresh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mint-lib/mint_api_refresh.c b/src/mint-lib/mint_api_refresh.c index 9a4d4be89..a30dcb050 100644 --- a/src/mint-lib/mint_api_refresh.c +++ b/src/mint-lib/mint_api_refresh.c @@ -1113,7 +1113,7 @@ verify_refresh_melt_signature_ok (struct TALER_MINT_RefreshMeltHandle *rmh, } /* check that noreveal index is in permitted range */ - if (TALER_CNC_KAPPA >= *noreveal_index) + if (TALER_CNC_KAPPA <= *noreveal_index) { GNUNET_break_op (0); return GNUNET_SYSERR; |