diff options
Diffstat (limited to 'src/methods/cipher_test/cipher_test.c')
-rw-r--r-- | src/methods/cipher_test/cipher_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/methods/cipher_test/cipher_test.c b/src/methods/cipher_test/cipher_test.c index 8ff57c6..056aaea 100644 --- a/src/methods/cipher_test/cipher_test.c +++ b/src/methods/cipher_test/cipher_test.c @@ -132,7 +132,7 @@ static void method_session_free(fastd_method_session_state_t *session) { /** Encrypts a packet and adds the common method header */ -static bool method_encrypt(fastd_peer_t *peer UNUSED, fastd_method_session_state_t *session, fastd_buffer_t *out, fastd_buffer_t in) { +static bool method_encrypt(UNUSED fastd_peer_t *peer, fastd_method_session_state_t *session, fastd_buffer_t *out, fastd_buffer_t in) { size_t tail_len = alignto(in.len, sizeof(fastd_block128_t))-in.len; *out = fastd_buffer_alloc(in.len, alignto(COMMON_HEADBYTES, 16), sizeof(fastd_block128_t)+tail_len); |