summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
authordtucker <dtucker>2004-11-05 09:20:59 +0000
committerdtucker <dtucker>2004-11-05 09:20:59 +0000
commite549f3700a8bcbabdcd47cdb69c78180f1284903 (patch)
tree04c4cc2a848e56f810b9e00a2dbae3b624c4ced1 /sshd.c
parenta0a1b7e73aa390e0bc341396f8dc1ebc0c1b4284 (diff)
downloadopenssh-e549f3700a8bcbabdcd47cdb69c78180f1284903.tar.gz
- djm@cvs.openbsd.org 2004/09/25 03:45:14
[sshd.c] these printf args are no longer double; ok deraadt@ markus@
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshd.c b/sshd.c
index 2afe316c..92b1df10 100644
--- a/sshd.c
+++ b/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>
@@ -765,7 +765,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;
}