summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2001-03-06 06:11:19 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2001-03-06 06:11:19 +0000
commit4a0545f26c0e8f60eabdab8a5dfd6f2e005a3033 (patch)
tree7000682ebb18c6964912c4b818c4dc26b600f1db
parent8b139aa2c849b873bf10dad128c9ef5c9f6d7667 (diff)
appease gcc
-rw-r--r--usr.bin/ssh/ssh-keyscan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keyscan.c b/usr.bin/ssh/ssh-keyscan.c
index cab158cb0fb..dba2d838e57 100644
--- a/usr.bin/ssh/ssh-keyscan.c
+++ b/usr.bin/ssh/ssh-keyscan.c
@@ -8,7 +8,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: ssh-keyscan.c,v 1.21 2001/03/06 01:06:03 millert Exp $");
+RCSID("$OpenBSD: ssh-keyscan.c,v 1.22 2001/03/06 06:11:18 deraadt Exp $");
#include <sys/queue.h>
#include <errno.h>
@@ -393,7 +393,7 @@ congreet(int s)
{
char buf[80], *cp;
size_t bufsiz;
- int n;
+ int n = 0;
con *c = &fdcon[s];
bufsiz = sizeof(buf);