From 71b27779a9a014cc5ff594cb0b34fc763387e071 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 17 Jun 2023 10:59:44 +0300 Subject: [PATCH] ; * lisp/net/ldap.el (ldap-search-internal): Fix last change. (Bug#64089) --- lisp/net/ldap.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/net/ldap.el b/lisp/net/ldap.el index 4275b45e6f5..8897c3b6d54 100644 --- a/lisp/net/ldap.el +++ b/lisp/net/ldap.el @@ -710,7 +710,7 @@ an alist of attribute/value pairs." ;; otherwise `ldap-decode-attribute' would throw a much less ;; comprehensible error later. (cond ((not withdn)) - ((looking-at "^dn[=:\t ]+\\(.*\\)$") + ((looking-at "dn[=:\t ]+\\(.*\\)$") (setq dn (list "dn" (match-string 1)))) (t (error "Incorrect dn line \"%s\" in ldapsearch result" (buffer-substring (point) (line-end-position))))) -- 2.39.2