diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-06-26 23:35:39 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-06-26 23:35:39 +0200 |
commit | 9a69fd81ed1eb5de13509f565947f01de8bdf38c (patch) | |
tree | 2d1bb22e401dfd277fdb7b930b767597863b9763 /src | |
parent | 87649e856a041414cb63c2a2f02a76ca1c6e482d (diff) |
use GNUNET_memcmp
Diffstat (limited to 'src')
-rw-r--r-- | src/json/json_wire.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/json/json_wire.c b/src/json/json_wire.c index 7a4b4a5d9..0ce4aa8b2 100644 --- a/src/json/json_wire.c +++ b/src/json/json_wire.c @@ -113,7 +113,7 @@ TALER_JSON_exchange_wire_signature_check (const json_t *wire_s, GNUNET_JSON_spec_end () }; - if (0 != memcmp (&master_pub_from_wire, master_pub)) + if (0 != GNUNET_memcmp (&master_pub_from_wire, master_pub)) { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "wire signature has an unexpected master public key\n"); |