diff options
Diffstat (limited to 'src/regex/regex_block_lib.c')
-rw-r--r-- | src/regex/regex_block_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regex/regex_block_lib.c b/src/regex/regex_block_lib.c index 83b61b7c62..bd3ec96792 100644 --- a/src/regex/regex_block_lib.c +++ b/src/regex/regex_block_lib.c @@ -39,7 +39,7 @@ * @return GNUNET_OK if the proof is valid for the given key. */ int -REGEX_INTERNAL_check_proof (const char *proof, +REGEX_BLOCK_check_proof (const char *proof, size_t proof_len, const struct GNUNET_HashCode *key) { @@ -140,7 +140,7 @@ REGEX_BLOCK_check (const struct RegexBlock *block, GNUNET_break_op (0); return GNUNET_SYSERR; } - if (GNUNET_OK != REGEX_INTERNAL_check_proof ((const char *) &block[1], len, &block->key)) + if (GNUNET_OK != REGEX_BLOCK_check_proof ((const char *) &block[1], len, &block->key)) { GNUNET_break_op (0); return GNUNET_SYSERR; |