aboutsummaryrefslogtreecommitdiff
path: root/lib/transfer.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/transfer.c')
-rw-r--r--lib/transfer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/transfer.c b/lib/transfer.c
index 13f31e9bc..1706ccb6f 100644
--- a/lib/transfer.c
+++ b/lib/transfer.c
@@ -1765,7 +1765,7 @@ CURLcode Curl_follow(struct SessionHandle *data,
size_t newlen;
char *newest;
- if (data->set.maxredirs &&
+ if ((data->set.maxredirs != -1) &&
(data->set.followlocation >= data->set.maxredirs)) {
failf(data,"Maximum (%d) redirects followed", data->set.maxredirs);
return CURLE_TOO_MANY_REDIRECTS;