diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2004-09-25 03:45:15 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2004-09-25 03:45:15 +0000 |
commit | fc0332deadb23f8ed6b3cec31869a8184488cc98 (patch) | |
tree | eb015a0d42a47bd6d8b2b4d3c983486bb5677f86 /usr.bin/ssh | |
parent | d0d13204e0211259b097214134856d3067011736 (diff) |
these printf args are no longer double; ok deraadt@ markus@
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/sshd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c index 50d0de8198d..ce7d85f9fd6 100644 --- a/usr.bin/ssh/sshd.c +++ b/usr.bin/ssh/sshd.c @@ -42,7 +42,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshd.c,v 1.303 2004/09/15 18:42:27 mickey Exp $"); +RCSID("$OpenBSD: sshd.c,v 1.304 2004/09/25 03:45:14 djm Exp $"); #include <openssl/dh.h> #include <openssl/bn.h> @@ -755,7 +755,7 @@ drop_connection(int startups) p += options.max_startups_rate; r = arc4random() % 100; - debug("drop_connection: p %g, r %g", p, r); + debug("drop_connection: p %d, r %d", p, r); return (r < p) ? 1 : 0; } |