File fix-typo-in-ssh_opts.patch of Package sshfs
From 508e8cb0e2b439f43e708c7a309eda2b8e31deb1 Mon Sep 17 00:00:00 2001
From: Antonio Rojas <arojas@archlinux.org>
Date: Tue, 5 Oct 2021 23:46:04 +0200
Subject: [PATCH] Fix typo in ssh_opts
Add a missing comma that prevents using the PubkeyAcceptedKeyTypes option
---
sshfs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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",