summaryrefslogtreecommitdiffstats
path: root/key.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2008-07-11 17:35:09 +1000
committerDamien Miller <djm@mindrot.org>2008-07-11 17:35:09 +1000
commit87dd5f2804a93010e289b1cbf53916688ddc1bc8 (patch)
treea7c897de89090a8c628fe5c4d0b2c6fbf8a52f7c /key.c
parent2f7faf19d55b8b0f591f86f1c0bd35f527c4b351 (diff)
- stevesk@cvs.openbsd.org 2008/07/07 23:32:51
[key.c] /*NOTREACHED*/ for lint warning: warning: function key_equal falls off bottom without returning value ok djm@
Diffstat (limited to 'key.c')
-rw-r--r--key.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/key.c b/key.c
index 515103cb..2ea13d27 100644
--- a/key.c
+++ b/key.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: key.c,v 1.77 2008/06/25 11:13:43 otto Exp $ */
+/* $OpenBSD: key.c,v 1.78 2008/07/07 23:32:51 stevesk Exp $ */
/*
* read_bignum():
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -174,6 +174,7 @@ key_equal(const Key *a, const Key *b)
default:
fatal("key_equal: bad key type %d", a->type);
}
+ /* NOTREACHED */
}
u_char*