From: Michael Albinus Date: Mon, 22 Jan 2024 09:08:45 +0000 (+0100) Subject: Fix nasty cut'n'waste error in Tramp X-Git-Tag: archive/raspbian/1%29.4+1-4+rpi1~1^2~2^2~18^2~93 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=14d68221d26af5c3e99ae0fbc7ade44494aaf4f3;p=emacs.git Fix nasty cut'n'waste error in Tramp * lisp/net/tramp.el (tramp-parse-passwd): Use `tramp-parse-passwd-group'. Reported by Tim Landscheidt . --- diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 56b00bdeb42..bd556753261 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -3518,7 +3518,7 @@ Host is always \"localhost\"." (when (zerop (tramp-call-process nil "getent" nil t nil "passwd")) (goto-char (point-min)) (cl-loop while (not (eobp)) collect - (tramp-parse-etc-group-group)))) + (tramp-parse-passwd-group)))) (tramp-parse-file filename #'tramp-parse-passwd-group)))) (defun tramp-parse-passwd-group ()