Commit 889d1e97 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

whitespace cleanup: no space first in conditionals

"if(a)" is our style, not "if( a )"
parent 1b758b01
Loading
Loading
Loading
Loading
+11 −11
Original line number Diff line number Diff line
@@ -587,10 +587,10 @@ Curl_addrinfo *Curl_resolver_getaddrinfo(struct connectdata *conn,
      res->num_pending = 2;

      /* areschannel is already setup in the Curl_open() function */
      ares_gethostbyname((ares_channel)data->state.resolver, hostname, PF_INET,
                         query_completed_cb, conn);
      ares_gethostbyname((ares_channel)data->state.resolver, hostname, PF_INET6,
                         query_completed_cb, conn);
      ares_gethostbyname((ares_channel)data->state.resolver, hostname,
                         PF_INET, query_completed_cb, conn);
      ares_gethostbyname((ares_channel)data->state.resolver, hostname,
                         PF_INET6, query_completed_cb, conn);
    }
    else
#endif /* CURLRES_IPV6 */
+2 −2
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
 *                            | (__| |_| |  _ <| |___
 *                             \___|\___/|_| \_\_____|
 *
 * Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
 * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
 *
 * This software is licensed as described in the file COPYING, which
 * you should have received as part of this distribution. The terms
+2 −1
Original line number Diff line number Diff line
@@ -1143,7 +1143,8 @@ struct UrlState {

  bool authproblem; /* TRUE if there's some problem authenticating */

  void *resolver; /* resolver state, if it is used in the URL state - ares_channel f.e. */
  void *resolver; /* resolver state, if it is used in the URL state -
                     ares_channel f.e. */

#if defined(USE_SSLEAY) && defined(HAVE_OPENSSL_ENGINE_H)
  ENGINE *engine;
+3 −3

File changed.

Contains only whitespace changes.

+4 −4

File changed.

Contains only whitespace changes.

+7 −7

File changed.

Contains only whitespace changes.

+2 −2

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+28 −28

File changed.

Contains only whitespace changes.

+3 −3

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+6 −6

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+6 −6

File changed.

Contains only whitespace changes.

+2 −2

File changed.

Contains only whitespace changes.

+6 −6

File changed.

Contains only whitespace changes.

+3 −3

File changed.

Contains only whitespace changes.

+7 −7

File changed.

Contains only whitespace changes.

+10 −10

File changed.

Contains only whitespace changes.

+2 −2

File changed.

Contains only whitespace changes.

Loading