diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-03-03 22:44:25 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-03-03 23:57:01 +0100 |
commit | f1c18e17663353d4a46f6dc23da72f49c53549cb (patch) | |
tree | 4784432673b009d64984a13b48fb1fef39b1181b | |
parent | c1a871a1662fefb498a4d32e9a47579ac9813926 (diff) |
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.
-rw-r--r-- | guix/build/download.scm | 4 |
1 files 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))) |