diff options
Diffstat (limited to 'lib')
| -rwxr-xr-x | lib/asyn-thread.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/asyn-thread.c b/lib/asyn-thread.c index 24da74885..fcbf1305e 100755 --- a/lib/asyn-thread.c +++ b/lib/asyn-thread.c @@ -244,8 +244,8 @@ int init_thread_sync_data(struct thread_data * td,    Curl_mutex_init(tsd->mtx);  #ifdef HAVE_SOCKETPAIR -  /* create socket pair */ -  if(socketpair(AF_LOCAL, SOCK_STREAM, 0, &tsd->sock_pair[0]) < 0) { +  /* create socket pair, avoid AF_LOCAL since it doesn't build on Solaris */ +  if(socketpair(AF_UNIX, SOCK_STREAM, 0, &tsd->sock_pair[0]) < 0) {      tsd->sock_pair[0] = CURL_SOCKET_BAD;      tsd->sock_pair[1] = CURL_SOCKET_BAD;      goto err_exit; | 
