diff options
author | djm <djm> | 2007-08-08 04:28:26 +0000 |
---|---|---|
committer | djm <djm> | 2007-08-08 04:28:26 +0000 |
commit | b815eac667cb35cb087e6a3a20b504bc213f7337 (patch) | |
tree | 7204e1ab7311e8b6f3e4311eae26577fac17fbf5 /key.c | |
parent | d4735e5daf0a21d0f934a1ef516c3bca8d10b8ab (diff) | |
download | openssh-b815eac667cb35cb087e6a3a20b504bc213f7337.tar.gz |
- ray@cvs.openbsd.org 2007/07/12 05:48:05
[key.c]
Delint: remove some unreachable statements, from Bret Lambert.
OK markus@ and dtucker@.
Diffstat (limited to 'key.c')
-rw-r--r-- | key.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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 @@ -170,9 +170,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* |