aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Rojas <arojas@archlinux.org>2021-10-06 09:19:22 +0200
committerGitHub <noreply@github.com>2021-10-06 08:19:22 +0100
commitc2715f74537a4487934ae22d3c0edf9c7fb779aa (patch)
tree8b944e1d2cc1b17a68f4d2e6e41c3645b7720b50
parent1abde6e779afa69aff2329493956f8d5b7037bc4 (diff)
downloadsshfs-c2715f74537a4487934ae22d3c0edf9c7fb779aa.tar
sshfs-c2715f74537a4487934ae22d3c0edf9c7fb779aa.tar.gz
sshfs-c2715f74537a4487934ae22d3c0edf9c7fb779aa.tar.bz2
sshfs-c2715f74537a4487934ae22d3c0edf9c7fb779aa.zip
Fix typo in ssh_opts (#269)
Add a missing comma that prevents using the PubkeyAcceptedKeyTypes option
-rw-r--r--sshfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sshfs.c b/sshfs.c
index 8addecb..5513266 100644
--- a/sshfs.c
+++ b/sshfs.c
@@ -432,7 +432,7 @@ static const char *ssh_opts[] = {
"ProxyCommand",
"ProxyJump",
"ProxyUseFdpass",
- "PubkeyAcceptedKeyTypes"
+ "PubkeyAcceptedKeyTypes",
"PubkeyAuthentication",
"RekeyLimit",
"RevokedHostKeys",