guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/08: download: Fix typo in procedure name.


From: guix-commits
Subject: 03/08: download: Fix typo in procedure name.
Date: Thu, 3 Mar 2022 18:00:21 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit f1c18e17663353d4a46f6dc23da72f49c53549cb
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Thu Mar 3 22:44:25 2022 +0100

    download: Fix typo in procedure name.
    
    * guix/build/download.scm (make-credendials-with-ca-trust-files): Rename
    to...
    (make-credentials-with-ca-trust-files): ... this.
---
 guix/build/download.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/guix/build/download.scm b/guix/build/download.scm
index 911f551b57..41583e8143 100644
--- a/guix/build/download.scm
+++ b/guix/build/download.scm
@@ -178,7 +178,7 @@ name decoding bug described at
   (let ((data (call-with-input-file file get-bytevector-all)))
     (set-certificate-credentials-x509-trust-data! cred data format)))
 
-(define make-credendials-with-ca-trust-files
+(define make-credentials-with-ca-trust-files
   (mlambda (directory)
     "Return certificate credentials with X.509 authority certificates read from
 DIRECTORY.  Those authority certificates are checked when
@@ -277,7 +277,7 @@ host name without trailing dot."
 
     (set-session-credentials! session
                               (if (and verify-certificate? ca-certs)
-                                  (make-credendials-with-ca-trust-files
+                                  (make-credentials-with-ca-trust-files
                                    ca-certs)
                                   (make-certificate-credentials)))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]