summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2000-02-16 13:18:52 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2000-02-16 13:18:52 +0000
commit43dee0d84c7f366ac7f647aac07ec873b16c3e73 (patch)
treecc008f216e3d58e873b5f405f671a9119efa61fa /usr.bin/ssh
parentf6cd7878a148a3c10422c2493fd104659c78c41e (diff)
remove unused variable
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r--usr.bin/ssh/hostfile.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/usr.bin/ssh/hostfile.c b/usr.bin/ssh/hostfile.c
index 831ac592fe9..abf8e08860f 100644
--- a/usr.bin/ssh/hostfile.c
+++ b/usr.bin/ssh/hostfile.c
@@ -14,7 +14,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: hostfile.c,v 1.11 2000/01/04 00:07:59 markus Exp $");
+RCSID("$OpenBSD: hostfile.c,v 1.12 2000/02/16 13:18:51 markus Exp $");
#include "packet.h"
#include "ssh.h"
@@ -179,7 +179,7 @@ check_host_in_hostfile(const char *filename, const char *host,
FILE *f;
char line[8192];
int linenum = 0;
- unsigned int bits, kbits, hostlen;
+ unsigned int kbits, hostlen;
char *cp, *cp2;
HostStatus end_return;
@@ -198,9 +198,6 @@ check_host_in_hostfile(const char *filename, const char *host,
*/
end_return = HOST_NEW;
- /* size of modulus 'n' */
- bits = BN_num_bits(n);
-
/* Go trough the file. */
while (fgets(line, sizeof(line), f)) {
cp = line;