diff options
author | 2008-07-07 23:32:51 +0000 | |
---|---|---|
committer | 2008-07-07 23:32:51 +0000 | |
commit | ca96494d7935bdce9a44f17f37e56e98cf0be790 (patch) | |
tree | 7c434a3ec59a0a254e89f952efff425e5747271e /usr.bin/ssh/key.c | |
parent | Match on XMITS (which is a PCI-X Schizo variant found on Sun Fire (diff) | |
download | wireguard-openbsd-ca96494d7935bdce9a44f17f37e56e98cf0be790.tar.xz wireguard-openbsd-ca96494d7935bdce9a44f17f37e56e98cf0be790.zip |
/*NOTREACHED*/ for lint warning:
warning: function key_equal falls off bottom without returning value
ok djm@
Diffstat (limited to 'usr.bin/ssh/key.c')
-rw-r--r-- | usr.bin/ssh/key.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/key.c b/usr.bin/ssh/key.c index d41c2333717..5b0a584db03 100644 --- a/usr.bin/ssh/key.c +++ b/usr.bin/ssh/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 @@ -170,6 +170,7 @@ key_equal(const Key *a, const Key *b) default: fatal("key_equal: bad key type %d", a->type); } + /* NOTREACHED */ } u_char* |