mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-15 12:25:25 -08:00
Fix previous patch.
This commit is contained in:
parent
85e0591524
commit
e189e54eea
1 changed files with 4 additions and 2 deletions
|
|
@ -5000,7 +5000,8 @@ Return ATTR."
|
|||
(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 @@ Return ATTR."
|
|||
(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))))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue