From 6898f68a51ae78db51e383d73d68c1b963d423cc Mon Sep 17 00:00:00 2001 From: Philip Kaludercic Date: Mon, 9 Jun 2025 13:09:53 +0200 Subject: [PATCH] Require CertFP files for rcirc to exist * lisp/net/rcirc.el (rcirc-authinfo): Adjust the types for the key and certificate file from 'string' to 'file'. (cherry picked from commit 00a30a752ecdf927f532ccf504d52392ef9d98da) --- lisp/net/rcirc.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el index b9970ea573a..9e1b930749d 100644 --- a/lisp/net/rcirc.el +++ b/lisp/net/rcirc.el @@ -302,8 +302,8 @@ Examples: (string :tag "Password")) (list :tag "CertFP" (const certfp) - (string :tag "Key") - (string :tag "Certificate"))))) + (file :tag "Key" :must-match t) + (file :tag "Certificate" :must-match t))))) (defcustom rcirc-auto-authenticate-flag t "Non-nil means automatically send authentication string to server. -- 2.39.5