diff options
author | 2007-07-12 05:48:05 +0000 | |
---|---|---|
committer | 2007-07-12 05:48:05 +0000 | |
commit | 89e51a0f8027e537192d1a7446b68376a2863412 (patch) | |
tree | 0fd788e7e73cd1703b829a0ca66c202d51be3623 /usr.bin/ssh/key.c | |
parent | Use the full 64 bits available when reporting sizes; now bioctl shows (diff) | |
download | wireguard-openbsd-89e51a0f8027e537192d1a7446b68376a2863412.tar.xz wireguard-openbsd-89e51a0f8027e537192d1a7446b68376a2863412.zip |
Delint: remove some unreachable statements, from Bret Lambert.
OK markus@ and dtucker@.
Diffstat (limited to 'usr.bin/ssh/key.c')
-rw-r--r-- | usr.bin/ssh/key.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/ssh/key.c b/usr.bin/ssh/key.c index ad1643f403b..e55955671ef 100644 --- a/usr.bin/ssh/key.c +++ b/usr.bin/ssh/key.c @@ -1,4 +1,4 @@ -/* $OpenBSD: key.c,v 1.68 2006/11/06 21:25:28 markus Exp $ */ +/* $OpenBSD: key.c,v 1.69 2007/07/12 05:48:05 ray Exp $ */ /* * read_bignum(): * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -167,9 +167,7 @@ key_equal(const Key *a, const Key *b) BN_cmp(a->dsa->pub_key, b->dsa->pub_key) == 0; default: fatal("key_equal: bad key type %d", a->type); - break; } - return 0; } u_char* |