diff options
author | 2002-07-01 16:15:25 +0000 | |
---|---|---|
committer | 2002-07-01 16:15:25 +0000 | |
commit | 485e533f1a59f67559fe69efdc3de5ce4be5e495 (patch) | |
tree | 9fa169043ebf414ed8120e872a97df021e413495 /usr.bin/ssh/msg.c | |
parent | do not Xr startkey (diff) | |
download | wireguard-openbsd-485e533f1a59f67559fe69efdc3de5ce4be5e495.tar.xz wireguard-openbsd-485e533f1a59f67559fe69efdc3de5ce4be5e495.zip |
%u
Diffstat (limited to 'usr.bin/ssh/msg.c')
-rw-r--r-- | usr.bin/ssh/msg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/msg.c b/usr.bin/ssh/msg.c index 7275c847dab..de19b057f92 100644 --- a/usr.bin/ssh/msg.c +++ b/usr.bin/ssh/msg.c @@ -22,7 +22,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "includes.h" -RCSID("$OpenBSD: msg.c,v 1.3 2002/06/24 15:49:22 itojun Exp $"); +RCSID("$OpenBSD: msg.c,v 1.4 2002/07/01 16:15:25 deraadt Exp $"); #include "buffer.h" #include "getput.h" @@ -63,7 +63,7 @@ msg_recv(int fd, Buffer *m) } msg_len = GET_32BIT(buf); if (msg_len > 256 * 1024) - fatal("msg_recv: read: bad msg_len %d", msg_len); + fatal("msg_recv: read: bad msg_len %u", msg_len); buffer_clear(m); buffer_append_space(m, msg_len); res = atomicio(read, fd, buffer_ptr(m), msg_len); |