1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Fix whitespaces

This commit is contained in:
Arnaud Le Blanc
2022-04-29 23:37:57 +02:00
parent be04769c9a
commit 9e74e58bcf

View File

@@ -886,10 +886,10 @@ php_socket_t php_network_connect_socket_to_host(const char *host, unsigned short
}
#endif
#ifdef IP_BIND_ADDRESS_NO_PORT
{
int val = 1;
(void) setsockopt(sock, SOL_IP, IP_BIND_ADDRESS_NO_PORT, &val, sizeof(val));
}
{
int val = 1;
(void) setsockopt(sock, SOL_IP, IP_BIND_ADDRESS_NO_PORT, &val, sizeof(val));
}
#endif
if (local_address_len == 0) {
php_error_docref(NULL, E_WARNING, "Invalid IP Address: %s", bindto);