Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-09-25 07:51:51 +0400
committerChristopher Faylor <me@cgf.cx>2003-09-25 07:51:51 +0400
commitcd2bce7142ff77e1e55149e5edfe04167b4e8964 (patch)
treeed32cb9d466d766149964a60b3707a1fda5a7c42 /winsup/cygwin/fhandler_socket.cc
parentdbf193cea8ca484b09053d328bce58238168ef15 (diff)
* include/tzfile.h: Add some missing entries.
Diffstat (limited to 'winsup/cygwin/fhandler_socket.cc')
-rw-r--r--winsup/cygwin/fhandler_socket.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_socket.cc b/winsup/cygwin/fhandler_socket.cc
index fe2f0564f..5ff45df4d 100644
--- a/winsup/cygwin/fhandler_socket.cc
+++ b/winsup/cygwin/fhandler_socket.cc
@@ -247,7 +247,7 @@ fhandler_socket::check_peer_secret_event (struct sockaddr_in* peer, int* secret)
DWORD rc = WaitForSingleObject (ev, 10000);
debug_printf ("WFSO rc=%d", rc);
CloseHandle (ev);
- return (rc == WAIT_OBJECT_0 ? 1 : 0 );
+ return (rc == WAIT_OBJECT_0 ? 1 : 0);
}
else
return 0;
@@ -530,7 +530,7 @@ fhandler_socket::connect (const struct sockaddr *name, int namelen)
{
if (!check_peer_secret_event (&sin, secret))
{
- debug_printf ( "accept from unauthorized server" );
+ debug_printf ("accept from unauthorized server");
secret_check_failed = TRUE;
}
}