summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog9
-rw-r--r--key.c4
2 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index de0d346ed..3c5bfb042 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
120070808
2 - (djm) OpenBSD CVS Sync
3 - ray@cvs.openbsd.org 2007/07/12 05:48:05
4 [key.c]
5 Delint: remove some unreachable statements, from Bret Lambert.
6 OK markus@ and dtucker@.
7
120070724 820070724
2 - (tim) [openssh.xml.in] make FMRI match what package scripts use. 9 - (tim) [openssh.xml.in] make FMRI match what package scripts use.
3 - (tim) [openbsd-compat/regress/closefromtest.c] Bug 1345: fix open() call. 10 - (tim) [openbsd-compat/regress/closefromtest.c] Bug 1345: fix open() call.
@@ -3116,4 +3123,4 @@
3116 OpenServer 6 and add osr5bigcrypt support so when someone migrates 3123 OpenServer 6 and add osr5bigcrypt support so when someone migrates
3117 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 3124 passwords between UnixWare and OpenServer they will still work. OK dtucker@
3118 3125
3119$Id: ChangeLog,v 1.4715 2007/07/25 04:40:59 tim Exp $ 3126$Id: ChangeLog,v 1.4716 2007/08/08 04:28:26 djm Exp $
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*