Hi Michael,
On Tue, Oct 20, 2015 at 9:28 AM, Michael Albinus <[email protected]> wrote: > > > + ;; ... 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------")))) > > Good catch! Thanks! Regards, Jürgen
_______________________________________________ Tramp-devel mailing list [email protected] https://lists.gnu.org/mailman/listinfo/tramp-devel
