]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/tramp-adb.el (tramp-adb-maybe-open-connection): Cache,
authorMichael Albinus <michael.albinus@gmx.de>
Sun, 3 Mar 2013 10:31:01 +0000 (11:31 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Sun, 3 Mar 2013 10:31:01 +0000 (11:31 +0100)
whether the "su" command is available on the device.

lisp/ChangeLog
lisp/net/tramp-adb.el

index 8b6ffeed01d1d1589f26ace07de846c26e798fb2..a19ebaf473f27fb8a9a57bc2a932306e25457e28 100644 (file)
@@ -1,3 +1,8 @@
+2013-03-03  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp-adb.el (tramp-adb-maybe-open-connection): Cache,
+       whether the "su" command is available on the device.
+
 2013-03-01  Michael Albinus  <michael.albinus@gmx.de>
 
        * net/tramp-adb.el (tramp-adb-prompt): Extend regexp.
index 910356fbb6c1365937796b0d33bdb2e10679f467..2d683a4d3d21b7685b989c4c873143abb5400b61 100644 (file)
@@ -1074,6 +1074,13 @@ connection if a previous connection has died for some reason."
         (host (tramp-file-name-host vec))
         (user (tramp-file-name-user vec))
         (devices (mapcar 'cadr (tramp-adb-parse-device-names nil))))
+
+    ;; Maybe we know already that "su" is not supported.  We cannot
+    ;; use a connection property, because we have not checked yet
+    ;; whether it is still the same device.
+    (when (and user (not (tramp-get-file-property vec "" "su-command-p" t)))
+      (tramp-error vec 'file-error "Cannot switch to user `%s'" user))
+
     (unless
        (and p (processp p) (memq (process-status p) '(run open)))
       (save-match-data
@@ -1133,7 +1140,9 @@ connection if a previous connection has died for some reason."
              (tramp-adb-send-command vec (format "su %s" user))
              (unless (zerop (tramp-adb-command-exit-status vec nil))
                (delete-process p)
-               (tramp-error vec 'file-error "Cannot switch to user %s" user)))
+               (tramp-set-file-property vec "" "su-command-p" nil)
+               (tramp-error
+                vec 'file-error "Cannot switch to user `%s'" user)))
 
            ;; Set "remote-path" connection property.  This is needed
            ;; for eshell.