[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#54836] [PATCH 2/3] http-client: Fix redirection.
From: |
Attila Lendvai |
Subject: |
[bug#54836] [PATCH 2/3] http-client: Fix redirection. |
Date: |
Sun, 10 Apr 2022 15:41:14 +0200 |
* guix/http-client.scm (http-fetch): Use the right uri variable in case of
redirection.
---
guix/http-client.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/http-client.scm b/guix/http-client.scm
index 8a5b3deecd..b8689a22ed 100644
--- a/guix/http-client.scm
+++ b/guix/http-client.scm
@@ -148,7 +148,7 @@ (define uri*
(or (not (uri-host uri))
(string=? host (uri-host uri)))
port)
- (open-connection uri*
+ (open-connection uri
#:verify-certificate?
verify-certificate?
#:timeout timeout)))))
--
2.34.0