From a0b4e21bbb0e272039a2f8b199e368a274f32c97 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Thu, 20 Sep 2018 15:41:59 -0700 Subject: [PATCH] Comment out SO_ERROR so it is not used --- src/header/sys_socket/constants.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/header/sys_socket/constants.rs b/src/header/sys_socket/constants.rs index cbec0095f9..a41ce5550f 100644 --- a/src/header/sys_socket/constants.rs +++ b/src/header/sys_socket/constants.rs @@ -14,7 +14,7 @@ pub const SOL_SOCKET: c_int = 1; pub const SO_DEBUG: c_int = 1; pub const SO_REUSEADDR: c_int = 2; pub const SO_TYPE: c_int = 3; -pub const SO_ERROR: c_int = 4; +//pub const SO_ERROR: c_int = 4; pub const SO_DONTROUTE: c_int = 5; pub const SO_BROADCAST: c_int = 6; pub const SO_SNDBUF: c_int = 7;