[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] [taler-exchange] branch master updated: fix if-else logical
From: |
gnunet |
Subject: |
[GNUnet-SVN] [taler-exchange] branch master updated: fix if-else logical error. |
Date: |
Fri, 11 May 2018 15:37:02 +0200 |
This is an automated email from the git hooks/post-receive script.
marcello pushed a commit to branch master
in repository exchange.
The following commit(s) were added to refs/heads/master by this push:
new 6a0be25 fix if-else logical error.
6a0be25 is described below
commit 6a0be254cc7a630da2f508119573338245277e56
Author: Marcello Stanisci <address@hidden>
AuthorDate: Fri May 11 15:36:48 2018 +0200
fix if-else logical error.
---
src/exchange-lib/testing_api_cmd_bank_check.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/exchange-lib/testing_api_cmd_bank_check.c
b/src/exchange-lib/testing_api_cmd_bank_check.c
index 2b471ee..6d1d3c1 100644
--- a/src/exchange-lib/testing_api_cmd_bank_check.c
+++ b/src/exchange-lib/testing_api_cmd_bank_check.c
@@ -210,7 +210,8 @@ check_bank_transfer_traits (void *cls,
&bcs->wtid,
sizeof (struct TALER_WireTransferIdentifierRawP)))
wtid_ptr = NULL;
- wtid_ptr = &bcs->wtid;
+ else
+ wtid_ptr = &bcs->wtid;
struct TALER_TESTING_Trait traits[] = {
TALER_TESTING_make_trait_transfer_subject (0, bcs->subject),
--
To stop receiving notification emails like this one, please contact
address@hidden
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] [taler-exchange] branch master updated: fix if-else logical error.,
gnunet <=