From: Tobias Brunner Date: Mon, 9 Dec 2019 10:34:30 +0000 (+0100) Subject: sshkey: Rename variables that conflict with function argument X-Git-Tag: 5.8.2rc2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e3e0fe41abb4d45c9d334ce6ab73aba10f5ecf87;p=thirdparty%2Fstrongswan.git sshkey: Rename variables that conflict with function argument --- diff --git a/src/libstrongswan/plugins/sshkey/sshkey_builder.c b/src/libstrongswan/plugins/sshkey/sshkey_builder.c index 9345142495..8c499d1cea 100644 --- a/src/libstrongswan/plugins/sshkey/sshkey_builder.c +++ b/src/libstrongswan/plugins/sshkey/sshkey_builder.c @@ -91,9 +91,9 @@ static sshkey_public_key_t *parse_public_key(chunk_t blob) } else if (chunk_equals(format, chunk_from_str("ssh-ed25519"))) { - chunk_t blob; + chunk_t ed_key; - if (!reader->read_data32(reader, &blob)) + if (!reader->read_data32(reader, &ed_key)) { DBG1(DBG_LIB, "invalid Ed25519 key in SSH key"); reader->destroy(reader); @@ -101,13 +101,13 @@ static sshkey_public_key_t *parse_public_key(chunk_t blob) } reader->destroy(reader); return lib->creds->create(lib->creds, CRED_PUBLIC_KEY, KEY_ED25519, - BUILD_EDDSA_PUB, blob, BUILD_END); + BUILD_EDDSA_PUB, ed_key, BUILD_END); } else if (chunk_equals(format, chunk_from_str("ssh-ed448"))) { - chunk_t blob; + chunk_t ed_key; - if (!reader->read_data32(reader, &blob)) + if (!reader->read_data32(reader, &ed_key)) { DBG1(DBG_LIB, "invalid Ed448 key in SSH key"); reader->destroy(reader); @@ -115,7 +115,7 @@ static sshkey_public_key_t *parse_public_key(chunk_t blob) } reader->destroy(reader); return lib->creds->create(lib->creds, CRED_PUBLIC_KEY, KEY_ED448, - BUILD_EDDSA_PUB, blob, BUILD_END); + BUILD_EDDSA_PUB, ed_key, BUILD_END); } else if (format.len > strlen(ECDSA_PREFIX) && strpfx(format.ptr, ECDSA_PREFIX))