On Wednesday 08 April 2015 12:38:44 Ricardo Moreno wrote:
> Doing error handle testing on a Windows SSH Server.
> Found an issue if existing port is being use.
> On bind.c
> Function ->  bind_socket()
> When an error happens it calls close(s) and under  windows it should call
> closesocket(s);
 
> 
> Example below
> 
> 
> #ifdef _WIN32
>     closesocket(s);
> #else
>     close(s);
> #endif

I've fixed that in master ...


        -- andreas

-- 
Andreas Schneider                   GPG-ID: CC014E3D
www.cryptomilk.org                [email protected]


Reply via email to