From a37410fd2885ebe6732e10003959a3625e742ad2 Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Mon, 22 Jan 2024 10:08:45 +0100 Subject: [PATCH] Fix nasty cut'n'waste error in Tramp * lisp/net/tramp.el (tramp-parse-passwd): Use `tramp-parse-passwd-group'. Reported by Tim Landscheidt . (cherry picked from commit 14d68221d26af5c3e99ae0fbc7ade44494aaf4f3) --- lisp/net/tramp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 479a5c6c44f..f8776bc6924 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -3192,7 +3192,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 () -- 2.39.5