diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ssh-keyscan.c | 3 |
2 files changed, 5 insertions, 3 deletions
@@ -22,6 +22,9 @@ | |||
22 | - deraadt@cvs.openbsd.org 2002/07/06 01:01:26 | 22 | - deraadt@cvs.openbsd.org 2002/07/06 01:01:26 |
23 | [ssh-keyscan.c] | 23 | [ssh-keyscan.c] |
24 | KNF, realloc fix, and clean usage | 24 | KNF, realloc fix, and clean usage |
25 | - stevesk@cvs.openbsd.org 2002/07/06 17:47:58 | ||
26 | [ssh-keyscan.c] | ||
27 | unused variable | ||
25 | 28 | ||
26 | 20020705 | 29 | 20020705 |
27 | - (tim) [configure.ac] AIX 4.2.1 has authenticate() in libs. | 30 | - (tim) [configure.ac] AIX 4.2.1 has authenticate() in libs. |
@@ -1305,4 +1308,4 @@ | |||
1305 | - (stevesk) entropy.c: typo in debug message | 1308 | - (stevesk) entropy.c: typo in debug message |
1306 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ | 1309 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ |
1307 | 1310 | ||
1308 | $Id: ChangeLog,v 1.2346 2002/07/07 22:17:22 mouring Exp $ | 1311 | $Id: ChangeLog,v 1.2347 2002/07/07 22:19:13 mouring Exp $ |
diff --git a/ssh-keyscan.c b/ssh-keyscan.c index 7210aa387..b913614db 100644 --- a/ssh-keyscan.c +++ b/ssh-keyscan.c | |||
@@ -7,7 +7,7 @@ | |||
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "includes.h" | 9 | #include "includes.h" |
10 | RCSID("$OpenBSD: ssh-keyscan.c,v 1.39 2002/07/06 01:01:26 deraadt Exp $"); | 10 | RCSID("$OpenBSD: ssh-keyscan.c,v 1.40 2002/07/06 17:47:58 stevesk Exp $"); |
11 | 11 | ||
12 | #include "openbsd-compat/fake-queue.h" | 12 | #include "openbsd-compat/fake-queue.h" |
13 | 13 | ||
@@ -171,7 +171,6 @@ Linebuf_lineno(Linebuf * lb) | |||
171 | static char * | 171 | static char * |
172 | Linebuf_getline(Linebuf * lb) | 172 | Linebuf_getline(Linebuf * lb) |
173 | { | 173 | { |
174 | u_int size; | ||
175 | int n = 0; | 174 | int n = 0; |
176 | void *p; | 175 | void *p; |
177 | 176 | ||