From b2dd1ef177b6b14d341666ab926179f8cc534517 Mon Sep 17 00:00:00 2001
From: Fabian Keil <fk@fabiankeil.de>
Date: Mon, 1 Jun 2009 19:55:00 +0200
Subject: [PATCH 02/10] Fix white space.

---
 lib/http.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git lib/http.c lib/http.c
index a7e6d4d..82f4ac6 100644
--- lib/http.c
+++ lib/http.c
@@ -1417,7 +1417,7 @@ CURLcode Curl_proxyCONNECT(struct connectdata *conn,
     /* if timeout is requested, find out how much remaining time we have */
     check = timeout - /* timeout time */
       Curl_tvdiff(Curl_tvnow(), conn->now); /* spent time */
-    if(check <=0 ) {
+    if(check <= 0) {
       failf(data, "Proxy CONNECT aborted due to timeout");
       return CURLE_RECV_ERROR;
     }
-- 
1.6.3.1


