* fhandler_socket.cc (fhandler_socket::bind): Remove printing wrong

errno in debug output.
This commit is contained in:
Corinna Vinschen 2007-02-20 09:48:31 +00:00
parent 510a85cbf9
commit 4997a508c8
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2007-02-20 Corinna Vinschen <corinna@vinschen.de>
* fhandler_socket.cc (fhandler_socket::bind): Remove printing wrong
errno in debug output.
2007-02-19 Christopher Faylor <me@cgf.cx>
Remove extraneous whitespace.

View File

@ -756,13 +756,13 @@ fhandler_socket::bind (const struct sockaddr *name, int namelen)
sin.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
if (::bind (get_socket (), (sockaddr *) &sin, len))
{
syscall_printf ("AF_LOCAL: bind failed %d", get_errno ());
syscall_printf ("AF_LOCAL: bind failed");
set_winsock_errno ();
goto out;
}
if (::getsockname (get_socket (), (sockaddr *) &sin, &len))
{
syscall_printf ("AF_LOCAL: getsockname failed %d", get_errno ());
syscall_printf ("AF_LOCAL: getsockname failed");
set_winsock_errno ();
goto out;
}