Fix nasty cut'n'waste error in Tramp
* lisp/net/tramp.el (tramp-parse-passwd): Use `tramp-parse-passwd-group'. Reported by Tim Landscheidt <tim@tim-landscheidt.de>.
This commit is contained in:
parent
51ca049608
commit
14d68221d2
1 changed files with 1 additions and 1 deletions
|
@ -3518,7 +3518,7 @@ Host is always \"localhost\"."
|
||||||
(when (zerop (tramp-call-process nil "getent" nil t nil "passwd"))
|
(when (zerop (tramp-call-process nil "getent" nil t nil "passwd"))
|
||||||
(goto-char (point-min))
|
(goto-char (point-min))
|
||||||
(cl-loop while (not (eobp)) collect
|
(cl-loop while (not (eobp)) collect
|
||||||
(tramp-parse-etc-group-group))))
|
(tramp-parse-passwd-group))))
|
||||||
(tramp-parse-file filename #'tramp-parse-passwd-group))))
|
(tramp-parse-file filename #'tramp-parse-passwd-group))))
|
||||||
|
|
||||||
(defun tramp-parse-passwd-group ()
|
(defun tramp-parse-passwd-group ()
|
||||||
|
|
Loading…
Add table
Reference in a new issue