diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2019-09-11 23:11:58 +0200 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2019-09-12 09:37:11 +0200 | 
| commit | e34ec7de5964baa214555115f5061ed199d0f7b4 (patch) | |
| tree | 99744e53b6df2bec07000283c07ce1aabd777bd4 /lib | |
| parent | a765a30500dd7cdb8738abc6af33341aa1b14879 (diff) | |
asyn-thread: s/AF_LOCAL/AF_UNIX for Solaris
Reported-by: Dagobert Michelsen
Fixes #4328
Closes #4333
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; | 
