From 5246ce458af0a8ab90e896470789da1bb16e9106 Mon Sep 17 00:00:00 2001 From: Evan Miller Date: Wed, 20 Oct 2021 12:20:23 -0400 Subject: [PATCH] udp: fix &/&& typo in macro condition (#3334) --- src/unix/udp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/udp.c b/src/unix/udp.c index 8e718ced..71bfbf7f 100644 --- a/src/unix/udp.c +++ b/src/unix/udp.c @@ -883,7 +883,7 @@ static int uv__udp_set_membership6(uv_udp_t* handle, #if !defined(__OpenBSD__) && \ !defined(__NetBSD__) && \ !defined(__ANDROID__) && \ - !defined(__DragonFly__) & \ + !defined(__DragonFly__) && \ !defined(__QNX__) static int uv__udp_set_source_membership4(uv_udp_t* handle, const struct sockaddr_in* multicast_addr,