Skip to content

Commit

Permalink
Fix typo in ssh_opts (#269)
Browse files Browse the repository at this point in the history
Add a missing comma that prevents using the PubkeyAcceptedKeyTypes option
  • Loading branch information
antonio-rojas committed Oct 6, 2021
1 parent 1abde6e commit c2715f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sshfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ static const char *ssh_opts[] = {
"ProxyCommand",
"ProxyJump",
"ProxyUseFdpass",
"PubkeyAcceptedKeyTypes"
"PubkeyAcceptedKeyTypes",
"PubkeyAuthentication",
"RekeyLimit",
"RevokedHostKeys",
Expand Down

0 comments on commit c2715f7

Please sign in to comment.