From b2ca777a08c9a23a9d9b90fc8106f3305744fec2 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Mon, 25 Sep 2006 00:16:23 +0000 Subject: Compiler warning fix --- lib/multi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/multi.c') diff --git a/lib/multi.c b/lib/multi.c index 0a19c129e..244994cfe 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -430,9 +430,9 @@ CURLMcode curl_multi_add_handle(CURLM *multi_handle, by default. */ CURLcode res = Curl_ch_connc(easy_handle, multi->connc, multi->connc->num*4); - if(res) + if(res != CURLE_OK) /* TODO: we need to do some cleaning up here! */ - return res; + return CURLM_OUT_OF_MEMORY; } /* increase the alive-counter */ -- cgit v1.2.3