diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-12-23 03:04:22 +0100 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-12-23 03:04:22 +0100 |
commit | 064496feaab2183b6dc5db0b0bebe0b226e2d31d (patch) | |
tree | c1fc7c10d211e2cbe05252d873ebbcc78cfd7376 /cipher.c | |
parent | - markus@cvs.openbsd.org 2002/11/21 22:22:50 (diff) | |
download | openssh-064496feaab2183b6dc5db0b0bebe0b226e2d31d.tar.xz openssh-064496feaab2183b6dc5db0b0bebe0b226e2d31d.zip |
- markus@cvs.openbsd.org 2002/11/21 22:45:31
[cipher.c kex.c packet.c sshconnect.c sshconnect2.c]
debug->debug2, unify debug messages
Diffstat (limited to 'cipher.c')
-rw-r--r-- | cipher.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" @@ -239,7 +239,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); |