diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2008-07-07 23:32:52 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2008-07-07 23:32:52 +0000 |
commit | 007d15b1ee80d86a0c33a1bc58ed3d9e3a66033c (patch) | |
tree | 5012e2c0b3378b3daeeeb8c70067455b4de98b03 /usr.bin | |
parent | 7fb4948c3398489c43c9b3d328dbd2dc4ceca883 (diff) |
/*NOTREACHED*/ for lint warning:
warning: function key_equal falls off bottom without returning value
ok djm@
Diffstat (limited to 'usr.bin')
-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* |