summaryrefslogtreecommitdiff
path: root/key.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2007-08-08 14:28:26 +1000
committerDamien Miller <djm@mindrot.org>2007-08-08 14:28:26 +1000
commit932040285fc0bf5a1a5bd5b3266ee3bf043cf7f1 (patch)
treea53d6a9b6c09c76956820796b39271871faffcb6 /key.c
parentcd22d30f321cf40cb4935896a1aad9768c002127 (diff)
- 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.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/key.c b/key.c
index 93b2d41fe..8fef9b40f 100644
--- a/key.c
+++ b/key.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: key.c,v 1.68 2006/11/06 21:25:28 markus Exp $ */ 1/* $OpenBSD: key.c,v 1.69 2007/07/12 05:48:05 ray Exp $ */
2/* 2/*
3 * read_bignum(): 3 * read_bignum():
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -170,9 +170,7 @@ key_equal(const Key *a, const Key *b)
170 BN_cmp(a->dsa->pub_key, b->dsa->pub_key) == 0; 170 BN_cmp(a->dsa->pub_key, b->dsa->pub_key) == 0;
171 default: 171 default:
172 fatal("key_equal: bad key type %d", a->type); 172 fatal("key_equal: bad key type %d", a->type);
173 break;
174 } 173 }
175 return 0;
176} 174}
177 175
178u_char* 176u_char*