Browse Source

Move setting of option inside the relevant conditional group

Stéphane Raimbault 9 years ago
parent
commit
10f92e2f66
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/modbus-tcp.c

+ 1 - 1
src/modbus-tcp.c

@@ -225,7 +225,6 @@ static int _modbus_tcp_set_ipv4_options(int s)
     /* If the OS does not offer SOCK_NONBLOCK, fall back to setting FIONBIO to
     /* If the OS does not offer SOCK_NONBLOCK, fall back to setting FIONBIO to
      * make sockets non-blocking */
      * make sockets non-blocking */
     /* Do not care about the return value, this is optional */
     /* Do not care about the return value, this is optional */
-    option = 1;
 #if !defined(SOCK_NONBLOCK) && defined(FIONBIO)
 #if !defined(SOCK_NONBLOCK) && defined(FIONBIO)
 #ifdef OS_WIN32
 #ifdef OS_WIN32
     {
     {
@@ -234,6 +233,7 @@ static int _modbus_tcp_set_ipv4_options(int s)
         ioctlsocket(s, FIONBIO, &loption);
         ioctlsocket(s, FIONBIO, &loption);
     }
     }
 #else
 #else
+    option = 1;
     ioctl(s, FIONBIO, &option);
     ioctl(s, FIONBIO, &option);
 #endif
 #endif
 #endif
 #endif