diff options
author | 2001-09-17 19:27:15 +0000 | |
---|---|---|
committer | 2001-09-17 19:27:15 +0000 | |
commit | cafd441e5dc784b18f73552fd2213e8d11d95154 (patch) | |
tree | d8f67529d8d011c06f8de5c6bbcaa190f6f1cd9a /usr.bin/ssh/key.c | |
parent | The first implementation of the buffer flushing daemon. It solves our (diff) | |
download | wireguard-openbsd-cafd441e5dc784b18f73552fd2213e8d11d95154.tar.xz wireguard-openbsd-cafd441e5dc784b18f73552fd2213e8d11d95154.zip |
u_char*/char* cleanup; ok markus@
Diffstat (limited to 'usr.bin/ssh/key.c')
-rw-r--r-- | usr.bin/ssh/key.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/key.c b/usr.bin/ssh/key.c index 0ddd3d9d476..482168de08f 100644 --- a/usr.bin/ssh/key.c +++ b/usr.bin/ssh/key.c @@ -32,7 +32,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "includes.h" -RCSID("$OpenBSD: key.c,v 1.29 2001/06/26 20:14:10 markus Exp $"); +RCSID("$OpenBSD: key.c,v 1.30 2001/09/17 19:27:15 stevesk Exp $"); #include <openssl/evp.h> @@ -653,7 +653,7 @@ key_names_valid2(const char *names) } Key * -key_from_blob(char *blob, int blen) +key_from_blob(u_char *blob, int blen) { Buffer b; char *ktype; |