Commit 0d722204 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

https_getsock() should be static all over (and did some fixed indenting)

parent e829d564
Loading
Loading
Loading
Loading
+18 −18
Original line number Diff line number Diff line
@@ -1751,7 +1751,7 @@ static int https_getsock(struct connectdata *conn,
}
#else
#ifdef USE_GNUTLS
int https_getsock(struct connectdata *conn,
static int https_getsock(struct connectdata *conn,
                         curl_socket_t *socks,
                         int numsocks)
{
@@ -1762,7 +1762,7 @@ int https_getsock(struct connectdata *conn,
}
#else
#ifdef USE_NSS
int https_getsock(struct connectdata *conn,
static int https_getsock(struct connectdata *conn,
                         curl_socket_t *socks,
                         int numsocks)
{
@@ -1773,7 +1773,7 @@ int https_getsock(struct connectdata *conn,
}
#else
#ifdef USE_QSOSSL
int https_getsock(struct connectdata *conn,
static int https_getsock(struct connectdata *conn,
                         curl_socket_t *socks,
                         int numsocks)
{