summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--key.c3
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5c451e20a..ae8efacae 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,11 @@
4 [ttymodes.c] 4 [ttymodes.c]
5 we don't need arg after the debug3() was removed. from lint. 5 we don't need arg after the debug3() was removed. from lint.
6 ok djm@ 6 ok djm@
7 - stevesk@cvs.openbsd.org 2008/07/07 23:32:51
8 [key.c]
9 /*NOTREACHED*/ for lint warning:
10 warning: function key_equal falls off bottom without returning value
11 ok djm@
7 12
820080709 1320080709
9 - (djm) [Makefile.in] Print "all tests passed" when all regress tests pass 14 - (djm) [Makefile.in] Print "all tests passed" when all regress tests pass
@@ -4610,4 +4615,4 @@
4610 OpenServer 6 and add osr5bigcrypt support so when someone migrates 4615 OpenServer 6 and add osr5bigcrypt support so when someone migrates
4611 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 4616 passwords between UnixWare and OpenServer they will still work. OK dtucker@
4612 4617
4613$Id: ChangeLog,v 1.5070 2008/07/11 07:34:35 djm Exp $ 4618$Id: ChangeLog,v 1.5071 2008/07/11 07:35:09 djm Exp $
diff --git a/key.c b/key.c
index 515103cb4..2ea13d27d 100644
--- a/key.c
+++ b/key.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: key.c,v 1.77 2008/06/25 11:13:43 otto Exp $ */ 1/* $OpenBSD: key.c,v 1.78 2008/07/07 23:32:51 stevesk 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
@@ -174,6 +174,7 @@ key_equal(const Key *a, const Key *b)
174 default: 174 default:
175 fatal("key_equal: bad key type %d", a->type); 175 fatal("key_equal: bad key type %d", a->type);
176 } 176 }
177 /* NOTREACHED */
177} 178}
178 179
179u_char* 180u_char*