diff options
author | Colin Watson <cjwatson@debian.org> | 2010-08-23 23:52:36 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2010-08-23 23:52:36 +0100 |
commit | 78799892cb1858927be02be9737c594052e3f910 (patch) | |
tree | ac3dc2e848ab9dc62fe4252e01e52c3d456f628f /packet.c | |
parent | 3875951bb76a9ec62634ae4026c9cc885d933477 (diff) | |
parent | 31e30b835fd9695d3b6647cab4867001b092e28f (diff) |
* New upstream release (http://www.openssh.com/txt/release-5.6):
- Added a ControlPersist option to ssh_config(5) that automatically
starts a background ssh(1) multiplex master when connecting. This
connection can stay alive indefinitely, or can be set to automatically
close after a user-specified duration of inactivity (closes: #335697,
#350898, #454787, #500573, #550262).
- Support AuthorizedKeysFile, AuthorizedPrincipalsFile,
HostbasedUsesNameFromPacketOnly, and PermitTunnel in sshd_config(5)
Match blocks (closes: #549858).
- sftp(1): fix ls in working directories that contain globbing
characters in their pathnames (LP: #530714).
Diffstat (limited to 'packet.c')
-rw-r--r-- | packet.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: packet.c,v 1.166 2009/06/27 09:29:06 andreas Exp $ */ | 1 | /* $OpenBSD: packet.c,v 1.168 2010/07/13 23:13:16 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -1307,7 +1307,7 @@ packet_read_poll2(u_int32_t *seqnr_p) | |||
1307 | macbuf = mac_compute(mac, active_state->p_read.seqnr, | 1307 | macbuf = mac_compute(mac, active_state->p_read.seqnr, |
1308 | buffer_ptr(&active_state->incoming_packet), | 1308 | buffer_ptr(&active_state->incoming_packet), |
1309 | buffer_len(&active_state->incoming_packet)); | 1309 | buffer_len(&active_state->incoming_packet)); |
1310 | if (memcmp(macbuf, buffer_ptr(&active_state->input), | 1310 | if (timingsafe_bcmp(macbuf, buffer_ptr(&active_state->input), |
1311 | mac->mac_len) != 0) { | 1311 | mac->mac_len) != 0) { |
1312 | logit("Corrupted MAC on input."); | 1312 | logit("Corrupted MAC on input."); |
1313 | if (need > PACKET_MAX_SIZE) | 1313 | if (need > PACKET_MAX_SIZE) |