diff options
author | 2001-03-06 06:11:18 +0000 | |
---|---|---|
committer | 2001-03-06 06:11:18 +0000 | |
commit | e4918e1650a58d552b6aa50d516011a07efe0912 (patch) | |
tree | e5d92d8f3be342f3b5547da79662ec15143c1824 /usr.bin/ssh/ssh-keyscan.c | |
parent | bit of cleaning (diff) | |
download | wireguard-openbsd-e4918e1650a58d552b6aa50d516011a07efe0912.tar.xz wireguard-openbsd-e4918e1650a58d552b6aa50d516011a07efe0912.zip |
appease gcc
Diffstat (limited to 'usr.bin/ssh/ssh-keyscan.c')
-rw-r--r-- | usr.bin/ssh/ssh-keyscan.c | 4 |
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); |