Browse Source

Resetting one difference to official neon that is no longer needed

Was for compatibility with the classic C++Builder compiler

Source commit: 3e411d56a434da05df6d36f1316c337b25591cbb
Martin Prikryl 1 week ago
parent
commit
f4f4fdd8f3
1 changed files with 0 additions and 2 deletions
  1. 0 2
      libs/neon/src/ne_socket.c

+ 0 - 2
libs/neon/src/ne_socket.c

@@ -2225,7 +2225,6 @@ int ne_sock_shutdown(ne_socket *sock, unsigned int flags)
     }
 #endif
 
-    { // WINSCP
 #ifdef _WIN32
     int how = flags == NE_SOCK_RECV ? SD_RECEIVE : (flags == NE_SOCK_SEND ? SD_SEND : SD_BOTH);
 #else
@@ -2239,7 +2238,6 @@ int ne_sock_shutdown(ne_socket *sock, unsigned int flags)
     }
 
     return ret;
-    } // WINSCP
 }
 
 int ne_sock_close(ne_socket *sock)