summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Albinus <michael.albinus@gmx.de>2024-01-22 10:08:45 +0100
committerMichael Albinus <michael.albinus@gmx.de>2024-01-22 10:08:45 +0100
commit14d68221d26af5c3e99ae0fbc7ade44494aaf4f3 (patch)
tree8ab2d0c6db9fb155d676049ab2933ff69f13fe83
parent51ca049608cd116e5ec5b8bb4fd815bed1cbf4ca (diff)
downloademacs-14d68221d26.tar.gz
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>.
-rw-r--r--lisp/net/tramp.el2
1 files changed, 1 insertions, 1 deletions
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 ()