From 49f1d87cfe85afe22929e54cb5f5c767908d5cb8 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Fri, 25 Aug 2017 14:50:24 +0200 Subject: [PATCH] salsa208: messagebyte -> messagebytes Spotted by constcheck --- src/libsodium/crypto_stream/salsa208/stream_salsa208.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsodium/crypto_stream/salsa208/stream_salsa208.c b/src/libsodium/crypto_stream/salsa208/stream_salsa208.c index 9b525264..b79bda5e 100644 --- a/src/libsodium/crypto_stream/salsa208/stream_salsa208.c +++ b/src/libsodium/crypto_stream/salsa208/stream_salsa208.c @@ -14,7 +14,7 @@ crypto_stream_salsa208_noncebytes(void) } size_t -crypto_stream_salsa208_messagebyte_max(void) +crypto_stream_salsa208_messagebytes_max(void) { return crypto_stream_salsa208_MESSAGEBYTES_MAX; }