--- tests/test_bind_stream_fuzzer.cpp.orig	2020-11-04 03:31:13 +0000
+++ tests/test_bind_stream_fuzzer.cpp	2020-11-04 03:31:50 +0000
@@ -57,7 +57,7 @@
         data += 64;
         size -= 64;
     }
-    recv (client, buf, 64, MSG_DONTWAIT);
+    recv (client, buf, 64, MSG_NONBLOCK);
     msleep (250);
     for (ssize_t sent = 0; size > 0 && (sent != -1 || errno == EINTR);
          size -= sent > 0 ? sent : 0, data += sent > 0 ? sent : 0)
--- tests/test_bind_curve_fuzzer.cpp.orig	2020-11-04 03:34:21 +0000
+++ tests/test_bind_curve_fuzzer.cpp	2020-11-04 03:35:14 +0000
@@ -75,14 +75,14 @@
         send (client, (void *) data, 202, MSG_NOSIGNAL);
         data += 202;
         size -= 202;
-        recv (client, buf, 170, MSG_DONTWAIT);
+        recv (client, buf, 170, MSG_NONBLOCK);
     }
     // Then send READY and expect INITIATE if there's enough data
     if (size >= 301) {
         send (client, (void *) data, 301, MSG_NOSIGNAL);
         data += 301;
         size -= 301;
-        recv (client, buf, 512, MSG_DONTWAIT);
+        recv (client, buf, 512, MSG_NONBLOCK);
     }
     msleep (250);
     for (ssize_t sent = 0; size > 0 && (sent != -1 || errno == EINTR);
--- tests/test_bind_ws_fuzzer.cpp.orig	2020-11-04 03:39:41 +0000
+++ tests/test_bind_ws_fuzzer.cpp	2020-11-04 03:42:28 +0000
@@ -66,13 +66,13 @@
         data += 192;
         size -= 192;
     }
-    recv (client, buf, 256, MSG_DONTWAIT);
+    recv (client, buf, 256, MSG_NONBLOCK);
     msleep (250);
     for (ssize_t sent = 0; size > 0 && (sent != -1 || errno == EINTR);
          size -= sent > 0 ? sent : 0, data += sent > 0 ? sent : 0)
         sent = send (client, (const char *) data, size, MSG_NOSIGNAL);
     msleep (250);
-    recv (client, buf, 256, MSG_DONTWAIT);
+    recv (client, buf, 256, MSG_NONBLOCK);
 
     zmq_msg_t msg;
     zmq_msg_init (&msg);
--- tests/test_connect_curve_fuzzer.cpp.orig	2020-11-04 03:43:37 +0000
+++ tests/test_connect_curve_fuzzer.cpp	2020-11-04 03:44:18 +0000
@@ -86,7 +86,7 @@
     for (ssize_t sent = 0; size > 0 && (sent != -1 || errno == EINTR);
          size -= sent > 0 ? sent : 0, data += sent > 0 ? sent : 0)
         sent = send (server_accept, (const char *) data, size, MSG_NOSIGNAL);
-    recv (server_accept, buf, 512, MSG_DONTWAIT);
+    recv (server_accept, buf, 512, MSG_NONBLOCK);
     msleep (250);
 
     zmq_msg_t msg;
--- tests/test_connect_stream_fuzzer.cpp.orig	2020-11-04 03:45:46 +0000
+++ tests/test_connect_stream_fuzzer.cpp	2020-11-04 03:46:34 +0000
@@ -61,7 +61,7 @@
         data += 64;
         size -= 64;
     }
-    recv (server_accept, buf, 64, MSG_DONTWAIT);
+    recv (server_accept, buf, 64, MSG_NONBLOCK);
     msleep (250);
     for (ssize_t sent = 0; size > 0 && (sent != -1 || errno == EINTR);
          size -= sent > 0 ? sent : 0, data += sent > 0 ? sent : 0)
--- tests/test_connect_ws_fuzzer.cpp.orig	2020-11-04 03:47:38 +0000
+++ tests/test_connect_ws_fuzzer.cpp	2020-11-04 03:48:10 +0000
@@ -63,7 +63,7 @@
         data += 166;
         size -= 166;
     }
-    recv (server_accept, buf, 256, MSG_DONTWAIT);
+    recv (server_accept, buf, 256, MSG_NONBLOCK);
     //  Then send the READY command
     if (size >= 29) {
         send (server_accept, (void *) data, 29, MSG_NOSIGNAL);
