Skip to content

Commit

Permalink
Merge pull request #75 from reynir/fix-server-sig-algs
Browse files Browse the repository at this point in the history
Fix regression from 6379b47
  • Loading branch information
reynir authored Sep 19, 2024
2 parents 9543077 + b10ebd7 commit 5b5fe34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/server.ml
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ let input_msg t msg now =
if t.ext_info then
let algs =
String.concat ","
(List.map Hostkey.alg_to_string (host_key_algs t.host_key));
(List.map Hostkey.alg_to_string Hostkey.preferred_algs);
in
let extensions =
[Extension { name = "server-sig-algs"; value = algs; }]
Expand Down

0 comments on commit 5b5fe34

Please sign in to comment.