Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e189e54e
Commit
e189e54e
authored
Sep 19, 2013
by
Michael Albinus
Browse files
Fix previous patch.
parent
85e05915
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
lisp/net/tramp-sh.el
lisp/net/tramp-sh.el
+4
-2
No files found.
lisp/net/tramp-sh.el
View file @
e189e54e
...
...
@@ -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))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment