emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r114396: Fix previous patch.


From: Michael Albinus
Subject: [Emacs-diffs] trunk r114396: Fix previous patch.
Date: Thu, 19 Sep 2013 19:14:31 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 114396
revision-id: address@hidden
parent: address@hidden
committer: Michael Albinus <address@hidden>
branch nick: trunk
timestamp: Thu 2013-09-19 21:14:26 +0200
message:
  Fix previous patch.
modified:
  lisp/net/tramp-sh.el           trampsh.el-20100913133439-a1faifh29eqoi4nh-1
=== modified file 'lisp/net/tramp-sh.el'
--- a/lisp/net/tramp-sh.el      2013-09-19 11:08:01 +0000
+++ b/lisp/net/tramp-sh.el      2013-09-19 19:14:26 +0000
@@ -5000,7 +5000,8 @@
                 (tramp-get-remote-uid-with-perl vec id-format))
                ((tramp-get-remote-python vec)
                 (tramp-get-remote-uid-with-python vec id-format))
-               (t (tramp-error vec "Cannot determine remote uid")))))
+               (t (tramp-error
+                   vec 'file-error "Cannot determine remote uid")))))
       ;; The command might not always return a number.
       (if (and (equal id-format 'integer) (not (integerp res))) -1 res))))
 
@@ -5040,7 +5041,8 @@
                 (tramp-get-remote-gid-with-perl vec id-format))
                ((tramp-get-remote-python vec)
                 (tramp-get-remote-gid-with-python vec id-format))
-               (t (tramp-error vec "Cannot determine remote gid")))))
+               (t (tramp-error
+                   vec 'file-error "Cannot determine remote gid")))))
       ;; The command might not always return a number.
       (if (and (equal id-format 'integer) (not (integerp res))) -1 res))))
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]