From ca96494d7935bdce9a44f17f37e56e98cf0be790 Mon Sep 17 00:00:00 2001 From: stevesk Date: Mon, 7 Jul 2008 23:32:51 +0000 Subject: [PATCH] /*NOTREACHED*/ for lint warning: warning: function key_equal falls off bottom without returning value ok djm@ --- usr.bin/ssh/key.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 , 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* -- 2.20.1