stun

simple point to point tunnel
git clone git://git.2f30.org/stun
Log | Files | Refs | README

commit 6632480b99d63ea7ca34150ea106ab81ba6cb944
parent f278e9f47d626981d26f061adec552581a03b7d9
Author: sin <sin@2f30.org>
Date:   Tue, 29 Mar 2016 10:56:55 +0100

fix key size error

Diffstat:
Mstun.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/stun.c b/stun.c @@ -189,7 +189,7 @@ prepkey(unsigned char *pw, int pwlen) ret = EVP_BytesToKey(EVP_aes_256_cbc(), EVP_sha1(), NULL, pw, pwlen, nrounds, aeskey, aesiv); if (ret != 32) - logerr("wrong key size: %d", ret); + logerr("wrong key size %d", ret); return 0; }