From: Fabian Keil <fk@fabiankeil.de>
Date: Thu, 8 Jun 2017 13:04:34 +0000 (+0000)
Subject: Fix indentation
X-Git-Tag: v_3_0_27~132
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/faq/@default-cgi@/user-manual/static/@default-cgi@edit-actions?a=commitdiff_plain;h=c374b4059fb38a0555f9eb7f6b15a42fc7045df1;p=privoxy.git

Fix indentation
---

diff --git a/jbsockets.c b/jbsockets.c
index 28790cf1..3c43c177 100644
--- a/jbsockets.c
+++ b/jbsockets.c
@@ -1,4 +1,4 @@
-const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.142 2017/06/04 14:36:44 fabiankeil Exp $";
+const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.143 2017/06/04 14:37:05 fabiankeil Exp $";
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/jbsockets.c,v $
@@ -370,10 +370,10 @@ static jb_socket rfc2553_connect_to(const char *host, int portnum, struct client
 #endif /* !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__) */
 
 #ifdef HAVE_POLL
-   poll_fd[0].fd = fd;
-   poll_fd[0].events = POLLOUT;
+      poll_fd[0].fd = fd;
+      poll_fd[0].events = POLLOUT;
 
-   if (poll(poll_fd, 1, 30000) > 0)
+      if (poll(poll_fd, 1, 30000) > 0)
 #else
       /* wait for connection to complete */
       FD_ZERO(&wfds);