exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 79dcb7276028aa0a3a7fdd2e02b99f8aaf69059c
parent 0b8a87126b24a9da20f5cd24dca7816f45bc34e0
Author: ng0 <ng0@n0.is>
Date:   Mon,  8 Apr 2019 13:25:43 +0000

Refactor auditor/taler-wire-auditor.c for GNUNET_memcmp

Diffstat:
Msrc/auditor/taler-wire-auditor.c | 10++++------
1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/src/auditor/taler-wire-auditor.c b/src/auditor/taler-wire-auditor.c @@ -1244,9 +1244,8 @@ history_credit_cb (void *cls, "diagnostic", "wire reference size missmatch")); return GNUNET_OK; } - if (0 != memcmp (&details->wtid, - &rii->details.wtid, - sizeof (struct TALER_WireTransferIdentifierRawP))) + if (0 != GNUNET_memcmp (&details->wtid, + &rii->details.wtid)) { report (report_reserve_in_inconsistencies, json_pack ("{s:I, s:o, s:o, s:o, s:s, s:s}", @@ -1536,9 +1535,8 @@ run (void *cls, GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Launching auditor\n"); cfg = c; - if (0 == memcmp (&zeromp, - &master_pub, - sizeof (struct TALER_MasterPublicKeyP))) + if (0 == GNUNET_memcmp (&zeromp, + &master_pub)) { /* -m option not given, try configuration */ char *master_public_key_str;