diff options
author | jp161948 <none@none> | 2008-04-08 06:48:11 -0700 |
---|---|---|
committer | jp161948 <none@none> | 2008-04-08 06:48:11 -0700 |
commit | dbe3f931a78f2d36a72003f6b51bf1fdc3aa035e (patch) | |
tree | a40b53ffde85b2649e94036d96231754a98d12dd /usr/src/cmd/ssh/libssh | |
parent | 8042ac43e2378c55e9493024bfb03652e5f7a761 (diff) | |
download | illumos-joyent-dbe3f931a78f2d36a72003f6b51bf1fdc3aa035e.tar.gz |
6679747 ssh disconnects with error if rc4, 3des or blowfish is used and default RekeyLimit is reached
Diffstat (limited to 'usr/src/cmd/ssh/libssh')
-rw-r--r-- | usr/src/cmd/ssh/libssh/common/packet.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr/src/cmd/ssh/libssh/common/packet.c b/usr/src/cmd/ssh/libssh/common/packet.c index 985666a576..51b4183cca 100644 --- a/usr/src/cmd/ssh/libssh/common/packet.c +++ b/usr/src/cmd/ssh/libssh/common/packet.c @@ -36,7 +36,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* - * Copyright 2007 Sun Microsystems, Inc. All rights reserved. + * Copyright 2008 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -557,7 +557,8 @@ set_newkeys(int mode) max_blocks = &max_blocks_in; } if (newkeys[mode] != NULL) { - debug("set_newkeys: rekeying"); + debug("set_newkeys: setting new keys for '%s' mode", + mode == MODE_IN ? "in" : "out"); cipher_cleanup(cc); free_keys(newkeys[mode]); } |