Skip to content

Commit

Permalink
Merge pull request wolfSSL#680 from miyazakh/server_host_kex
Browse files Browse the repository at this point in the history
Omit comma at the end
  • Loading branch information
ejohnstown authored May 2, 2024
2 parents 2a139c9 + 22c31b8 commit 39bbaff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal.c
Original file line number Diff line number Diff line change
Expand Up @@ -9266,7 +9266,7 @@ int SendKexInit(WOLFSSH* ssh)
kexAlgoNamesSz = AlgoListSz(ssh->algoListKex);
encAlgoNamesSz = AlgoListSz(ssh->algoListCipher);
if (!keyAlgoNames) {
keyAlgoNamesSz = (word32)WSTRLEN(ssh->algoListKey);
keyAlgoNamesSz = AlgoListSz(ssh->algoListKey);
}
else {
keyAlgoNamesSz = AlgoListSz(keyAlgoNames);
Expand Down

0 comments on commit 39bbaff

Please sign in to comment.