Skip to content
Snippets Groups Projects
Commit 6e15e753 authored by Gaël PORTAY's avatar Gaël PORTAY
Browse files

Turn modptr local variable into unsigned char *

parent 1c2a1838
Branches
Tags
No related merge requests found
...@@ -507,7 +507,7 @@ static sign_key *openssh_read(const char *filename, char * UNUSED(passphrase)) ...@@ -507,7 +507,7 @@ static sign_key *openssh_read(const char *filename, char * UNUSED(passphrase))
int i, num_integers = 0; int i, num_integers = 0;
sign_key *retval = NULL; sign_key *retval = NULL;
char *errmsg; char *errmsg;
char *modptr = NULL; unsigned char *modptr = NULL;
int modlen = -9999; int modlen = -9999;
enum signkey_type type; enum signkey_type type;
...@@ -646,7 +646,7 @@ static sign_key *openssh_read(const char *filename, char * UNUSED(passphrase)) ...@@ -646,7 +646,7 @@ static sign_key *openssh_read(const char *filename, char * UNUSED(passphrase))
*/ */
if (i == 1) { if (i == 1) {
/* Save the details for after we deal with number 2. */ /* Save the details for after we deal with number 2. */
modptr = (char *)p; modptr = p;
modlen = len; modlen = len;
} else if (i >= 2 && i <= 5) { } else if (i >= 2 && i <= 5) {
buf_putstring(blobbuf, p, len); buf_putstring(blobbuf, p, len);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment