diff options
author | Knucklesfan <[email protected]> | 2022-01-08 16:48:56 -0600 |
---|---|---|
committer | rbuj <[email protected]> | 2022-05-17 09:55:58 +0200 |
commit | 969e0d9448e40b821b0623a94424e998d926511d (patch) | |
tree | 18cbfe8dd33bf4a896fd705c5f4a637c243629cb | |
parent | 53527ecffadaaab1d7bd9c77a7a5c879c81e9c76 (diff) | |
download | caja-extensions-969e0d9448e40b821b0623a94424e998d926511d.tar.bz2 caja-extensions-969e0d9448e40b821b0623a94424e998d926511d.tar.xz |
Fixed caja-share not working under Arch Linux
Very minor syntax error with the samba command.
-rw-r--r-- | share/shares.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |