summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/sshd.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2001-02-04 15:14:16 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2001-02-04 15:14:16 +0000
commite7f9fb179b72b55e43ead68e39be4d993ae4ac8f (patch)
tree30aa1a8cc2f44d704b0882fd830caa491d9a0665 /usr.bin/ssh/sshd.c
parent2a415b2b99431c1bd531ab99aa11278ebaa36a0d (diff)
make the alpha happy
Diffstat (limited to 'usr.bin/ssh/sshd.c')
-rw-r--r--usr.bin/ssh/sshd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c
index c83db129cc6..5cc4ac849b0 100644
--- a/usr.bin/ssh/sshd.c
+++ b/usr.bin/ssh/sshd.c
@@ -40,7 +40,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: sshd.c,v 1.159 2001/01/29 19:47:31 markus Exp $");
+RCSID("$OpenBSD: sshd.c,v 1.160 2001/02/04 15:14:15 deraadt Exp $");
#include <openssl/dh.h>
#include <openssl/bn.h>
@@ -1323,7 +1323,7 @@ do_ssh1_kex(void)
len = BN_num_bytes(session_key_int);
if (len < 0 || len > sizeof(session_key)) {
error("do_connection: bad session key len from %s: "
- "session_key_int %d > sizeof(session_key) %d",
+ "session_key_int %d > sizeof(session_key) %ld",
get_remote_ipaddr(), len, sizeof(session_key));
rsafail++;
} else {