From 969e0d9448e40b821b0623a94424e998d926511d Mon Sep 17 00:00:00 2001 From: Knucklesfan Date: Sat, 8 Jan 2022 16:48:56 -0600 Subject: Fixed caja-share not working under Arch Linux Very minor syntax error with the samba command. --- share/shares.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/shares.c b/share/shares.c index b628321..201cc95 100644 --- a/share/shares.c +++ b/share/shares.c @@ -624,7 +624,7 @@ add_share (ShareInfo *info, GError **error) return FALSE; argv[0] = "add"; - argv[1] = "-l"; + argv[1] = "--long"; argv[2] = info->share_name; argv[3] = info->path; argv[4] = info->comment; -- cgit v1.2.1