GH #2892: SocketImpl::bind --> bind wrong config

This commit is contained in:
Günter Obiltschnig 2020-01-25 14:22:27 +01:00
parent aceeac1db4
commit 3bdb47ae66

View File

@ -229,7 +229,7 @@ void SocketImpl::bind(const SocketAddress& address, bool reuseAddress, bool reus
void SocketImpl::bind6(const SocketAddress& address, bool reuseAddress, bool ipV6Only)
{
bind6(address, reuseAddress, true, ipV6Only);
bind6(address, reuseAddress, reuseAddress, ipV6Only);
}