commit ee9cff3555f62535115a0712e6846f67542ac78d
parent 28123fd1fc5e9084c99ba70364ff8feaaa62d501
Author: ng0 <ng0@n0.is>
Date: Wed, 17 Apr 2019 19:25:24 +0000
Refactor for GNUNET_memcmp
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/exchange/taler-exchange-httpd_deposit.c b/src/exchange/taler-exchange-httpd_deposit.c
@@ -467,9 +467,8 @@ TEH_DEPOSIT_handler_deposit (struct TEH_RequestHandler *rh,
TALER_EC_DEPOSIT_INVALID_WIRE_FORMAT_JSON,
"wire");
}
- if (0 != memcmp (&deposit.h_wire,
- &my_h_wire,
- sizeof (struct GNUNET_HashCode)))
+ if (0 != GNUNET_memcmp (&deposit.h_wire,
+ &my_h_wire))
{
/* Client hashed contract differently than we did, reject */
GNUNET_JSON_parse_free (spec);