]> git.eshelyaron.com Git - emacs.git/commitdiff
(tramp-smb-handle-directory-files-and-attributes): Use
authorGlenn Morris <rgm@gnu.org>
Tue, 29 Sep 2009 02:43:46 +0000 (02:43 +0000)
committerGlenn Morris <rgm@gnu.org>
Tue, 29 Sep 2009 02:43:46 +0000 (02:43 +0000)
tramp-compat-file-attributes rather than nonexistent
tramp-compat-handle-file-attributes.

lisp/net/tramp-smb.el

index 86cbe641d99fc98d8de92373ec9d49498158babf..549001db75a9c9d1f54e85648acbb8078382672e 100644 (file)
@@ -323,7 +323,7 @@ PRESERVE-UID-GID is completely ignored."
   "Like `directory-files-and-attributes' for Tramp files."
   (mapcar
    (lambda (x)
-     (cons x (tramp-compat-handle-file-attributes
+     (cons x (tramp-compat-file-attributes
              (if full x (expand-file-name x directory)) id-format)))
    (directory-files directory full match nosort)))