From e21926f7f081b0eb18962374770e91648a8d5fc3 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 18 Feb 2002 10:05:18 +0000 Subject: [PATCH] connection timeout comparison fix by Emil --- lib/connect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/connect.c b/lib/connect.c index 34fc1e844..b1a2560b2 100644 --- a/lib/connect.c +++ b/lib/connect.c @@ -361,7 +361,7 @@ CURLcode Curl_connecthost(struct connectdata *conn, /* context */ /* get the most strict timeout of the ones converted to milliseconds */ if(data->set.timeout && - (data->set.timeout>data->set.connecttimeout)) + (data->set.timeout < data->set.connecttimeout)) timeout_ms = data->set.timeout*1000; else timeout_ms = data->set.connecttimeout*1000;