diff options
author | Juri Linkov <juri@jurta.org> | 2009-07-02 22:49:30 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2009-07-02 22:49:30 +0000 |
commit | baf1a55e823844db89b80a5d96376a8c1102581c (patch) | |
tree | 515d540320aa97206f6a200c50723428bef38ac3 /lisp/net/tramp-gvfs.el | |
parent | 6f2d8b35abdf7a497caec62fba953ac97e646d30 (diff) | |
download | emacs-baf1a55e823844db89b80a5d96376a8c1102581c.tar.gz emacs-baf1a55e823844db89b80a5d96376a8c1102581c.tar.bz2 emacs-baf1a55e823844db89b80a5d96376a8c1102581c.zip |
(tramp-gvfs-connection-mounted-p): Use `elt' instead of `mount-info'.
Diffstat (limited to 'lisp/net/tramp-gvfs.el')
-rw-r--r-- | lisp/net/tramp-gvfs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp-gvfs.el b/lisp/net/tramp-gvfs.el index e46727216d6..9241541a8e2 100644 --- a/lisp/net/tramp-gvfs.el +++ b/lisp/net/tramp-gvfs.el @@ -925,7 +925,7 @@ ADDRESS can have the form \"xx:xx:xx:xx:xx:xx\" or \"[xx:xx:xx:xx:xx:xx]\"." nil) ;; The interface of mount-info has been changed. We must handle ;; both cases. - (let* ((last-nth (if (nth 9 mount-info) 9 8)) + (let* ((last-nth (if (nth 9 elt) 9 8)) (mount-spec (nth 1 (nth last-nth elt))) (method (dbus-byte-array-to-string (cadr (assoc "type" mount-spec)))) |