artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9e9d5ee
)
/*NOTREACHED*/ for lint warning:
author
stevesk
<stevesk@openbsd.org>
Mon, 7 Jul 2008 23:32:51 +0000
(23:32 +0000)
committer
stevesk
<stevesk@openbsd.org>
Mon, 7 Jul 2008 23:32:51 +0000
(23:32 +0000)
warning: function key_equal falls off bottom without returning value
ok djm@
usr.bin/ssh/key.c
patch
|
blob
|
history
diff --git
a/usr.bin/ssh/key.c
b/usr.bin/ssh/key.c
index
d41c233
..
5b0a584
100644
(file)
--- a/
usr.bin/ssh/key.c
+++ b/
usr.bin/ssh/key.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: key.c,v 1.7
7 2008/06/25 11:13:43 otto
Exp $ */
+/* $OpenBSD: key.c,v 1.7
8 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*