summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/cipher.c
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2002-11-21 22:45:31 +0000
committermarkus <markus@openbsd.org>2002-11-21 22:45:31 +0000
commit59c3e193167147514af00d4f590867a3a3f5ebfb (patch)
tree5f743d8271c4e92400398d73469d5d38bcb54c0a /usr.bin/ssh/cipher.c
parentAdd a caveat on /etc/raddb/servers and permissions. (diff)
downloadwireguard-openbsd-59c3e193167147514af00d4f590867a3a3f5ebfb.tar.xz
wireguard-openbsd-59c3e193167147514af00d4f590867a3a3f5ebfb.zip
debug->debug2, unify debug messages
Diffstat (limited to 'usr.bin/ssh/cipher.c')
-rw-r--r--usr.bin/ssh/cipher.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/cipher.c b/usr.bin/ssh/cipher.c
index 31d63960491..cdda8a3d1a2 100644
--- a/usr.bin/ssh/cipher.c
+++ b/usr.bin/ssh/cipher.c
@@ -35,7 +35,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: cipher.c,v 1.61 2002/07/12 15:50:17 markus Exp $");
+RCSID("$OpenBSD: cipher.c,v 1.62 2002/11/21 22:45:31 markus Exp $");
#include "xmalloc.h"
#include "log.h"
@@ -221,7 +221,7 @@ cipher_init(CipherContext *cc, Cipher *cipher,
cipher->name);
klen = EVP_CIPHER_CTX_key_length(&cc->evp);
if (klen > 0 && keylen != klen) {
- debug("cipher_init: set keylen (%d -> %d)", klen, keylen);
+ debug2("cipher_init: set keylen (%d -> %d)", klen, keylen);
if (EVP_CIPHER_CTX_set_key_length(&cc->evp, keylen) == 0)
fatal("cipher_init: set keylen failed (%d -> %d)",
klen, keylen);