OSDN Git Service

* cygserver_transport_pipes.cc (transport_layer_pipes::accept):
authorscottc <scottc>
Mon, 30 Sep 2002 18:31:55 +0000 (18:31 +0000)
committerscottc <scottc>
Mon, 30 Sep 2002 18:31:55 +0000 (18:31 +0000)
Remove trailing \n from debug_printf.

winsup/cygserver/transport_pipes.cc
winsup/cygwin/ChangeLog
winsup/cygwin/cygserver_transport_pipes.cc

index f318a75..495d804 100644 (file)
@@ -170,7 +170,7 @@ transport_layer_pipes::accept (bool *const recoverable)
   if (!ConnectNamedPipe (accept_pipe, NULL)
       && GetLastError () != ERROR_PIPE_CONNECTED)
     {
-      debug_printf ("error connecting to pipe (%lu)\n.", GetLastError ());
+      debug_printf ("error connecting to pipe (%lu)", GetLastError ());
       (void) CloseHandle (accept_pipe);
       *recoverable = true;     // FIXME: case analysis?
       return NULL;
index f4598a7..b804b8f 100644 (file)
@@ -1,3 +1,8 @@
+2002-09-30  Conrad Scott  <conrad.scott@dsl.pipex.com>
+
+       * cygserver_transport_pipes.cc (transport_layer_pipes::accept):
+       Remove trailing \n from debug_printf.
+
 2002-09-30  Christopher Faylor  <cgf@redhat.com>
 
        * thread.cc (pthread_mutex::initMutex): Remove \n from api_fatal.
index f318a75..495d804 100755 (executable)
@@ -170,7 +170,7 @@ transport_layer_pipes::accept (bool *const recoverable)
   if (!ConnectNamedPipe (accept_pipe, NULL)
       && GetLastError () != ERROR_PIPE_CONNECTED)
     {
-      debug_printf ("error connecting to pipe (%lu)\n.", GetLastError ());
+      debug_printf ("error connecting to pipe (%lu)", GetLastError ());
       (void) CloseHandle (accept_pipe);
       *recoverable = true;     // FIXME: case analysis?
       return NULL;