1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 08:08:50 -05:00

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

This commit is contained in:
Daniel Stenberg 2008-02-18 19:53:31 +00:00
parent e829d5643f
commit 0d722204c3

View File

@ -1751,7 +1751,7 @@ static int https_getsock(struct connectdata *conn,
} }
#else #else
#ifdef USE_GNUTLS #ifdef USE_GNUTLS
int https_getsock(struct connectdata *conn, static int https_getsock(struct connectdata *conn,
curl_socket_t *socks, curl_socket_t *socks,
int numsocks) int numsocks)
{ {
@ -1762,7 +1762,7 @@ int https_getsock(struct connectdata *conn,
} }
#else #else
#ifdef USE_NSS #ifdef USE_NSS
int https_getsock(struct connectdata *conn, static int https_getsock(struct connectdata *conn,
curl_socket_t *socks, curl_socket_t *socks,
int numsocks) int numsocks)
{ {
@ -1773,7 +1773,7 @@ int https_getsock(struct connectdata *conn,
} }
#else #else
#ifdef USE_QSOSSL #ifdef USE_QSOSSL
int https_getsock(struct connectdata *conn, static int https_getsock(struct connectdata *conn,
curl_socket_t *socks, curl_socket_t *socks,
int numsocks) int numsocks)
{ {