Jürgen Hötzel <[email protected]> writes:

> Hi Michael.

Hi Juergen,

> I have enclosed a patch (nothing ready to merge yet).

I've tested further, and found another error in the patch:

> +     ;; ... file mode flags
> +     (setq res-filemodes
> +           (let ((n (cdr (assoc "unix::mode" attributes))))
> +             (if n (tramp-file-mode-from-int
> +                    (string-to-number (match-string 1)))
> +               (if dirp "drwx------" "-rwx------"))))

must be

        ;; ... file mode flags
        (setq res-filemodes
              (let ((n (cdr (assoc "unix::mode" attributes))))
                (if n (tramp-file-mode-from-int
                       (string-to-number n))
                  (if dirp "drwx------" "-rwx------"))))

Best regards, Michael.

_______________________________________________
Tramp-devel mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/tramp-devel

Reply via email to