diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-03-01 13:36:40 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-03-01 13:36:40 +0100 |
commit | f457e1332d5963b661741cff8ce2068fa83f5224 (patch) | |
tree | 7c5b39fe7924c4750f35ffee2388b02f04b7bc85 | |
parent | 1eb292fe1fa6e00df8758fc1c2e5ac93f341dc4e (diff) |
use memcpy/memcmp instead of str-functions where applicable
-rw-r--r-- | src/json/json_wire.c | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/src/json/json_wire.c b/src/json/json_wire.c index b0bb67503..45136bf31 100644 --- a/src/json/json_wire.c +++ b/src/json/json_wire.c @@ -200,7 +200,7 @@ static const struct CountryTableEntry country_table[] = { * * @param ptr1 pointer to a `struct table_entry` * @param ptr2 pointer to a `struct table_entry` - * @return result of strncmp()'ing the 2-digit country codes of the entries + * @return result of memcmp()'ing the 2-digit country codes of the entries */ static int cmp_country_code (const void *ptr1, @@ -209,9 +209,9 @@ cmp_country_code (const void *ptr1, const struct CountryTableEntry *cc1 = ptr1; const struct CountryTableEntry *cc2 = ptr2; - return strncmp (cc1->code, - cc2->code, - 2); + return memcmp (cc1->code, + cc2->code, + 2); } @@ -242,9 +242,9 @@ validate_iban (const char *iban) "IBAN number too long to be valid\n"); return GNUNET_NO; } - strncpy (cc, iban, 2); - strncpy (ibancpy, iban + 4, len - 4); - strncpy (ibancpy + len - 4, iban, 4); + memcpy (cc, iban, 2); + memcpy (ibancpy, iban + 4, len - 4); + memcpy (ibancpy + len - 4, iban, 4); ibancpy[len] = '\0'; cc_entry.code = cc; cc_entry.english = NULL; @@ -303,11 +303,14 @@ validate_iban (const char *iban) remainder = dividend % 97; } GNUNET_free (nbuf); - if (1 == remainder) - return GNUNET_YES; - GNUNET_log (GNUNET_ERROR_TYPE_INFO, - "IBAN checksum wrong\n"); - return GNUNET_NO; + if (1 != remainder) + { + GNUNET_log (GNUNET_ERROR_TYPE_WARNING, + "IBAN `%s' has the wrong checksum\n", + iban); + return GNUNET_NO; + } + return GNUNET_YES; } |