diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-09-17 19:27:16 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-09-17 19:27:16 +0000 |
commit | 5b7f5d7784b6b205bb86ca2c15dc3c99925600a5 (patch) | |
tree | a7925d318b5eae9d28fc8795929b327d5a7bcab1 /usr.bin/ssh/key.c | |
parent | 558d8397d514aacccc830c86d8533565610b739f (diff) |
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; |