From 8d17265ac4f9202d924a109a38db33dac5619f9f Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sat, 28 Oct 2006 22:07:09 +0000 Subject: [PATCH] * Don't use EPSV. --- scripts/nix-prefetch-url.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/nix-prefetch-url.in b/scripts/nix-prefetch-url.in index e5338d72d7..0cf8365992 100644 --- a/scripts/nix-prefetch-url.in +++ b/scripts/nix-prefetch-url.in @@ -48,7 +48,7 @@ if test -z "$finalPath"; then mkdir $tmpPath # Perform the download. - @curl@ --fail --location --max-redirs 20 "$url" > $tmpFile + @curl@ --fail --location --max-redirs 20 --disable-epsv "$url" > $tmpFile # Compute the hash. hash=$(@bindir@/nix-hash --type "$hashType" $hashFormat --flat $tmpFile)