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 and jefferyq2 committed Sep 24, 2024
1 parent 8bca908 commit 23332dd
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 23332dd

Please sign in to comment.