From 3d90c8bdaddd29da8f67d82fb8a838ef2ff7c3b3 Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Wed, 18 May 2005 21:28:12 +0000 Subject: [PATCH] Revert accidental commit svn path=/trunk/; revision=15400 --- reactos/subsys/system/services/database.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/reactos/subsys/system/services/database.c b/reactos/subsys/system/services/database.c index 5920b5cd8a8..ce94e1b4934 100644 --- a/reactos/subsys/system/services/database.c +++ b/reactos/subsys/system/services/database.c @@ -702,13 +702,12 @@ ScmStartUserModeService(PSERVICE Service) ResumeThread(ProcessInformation.hThread); /* Connect control pipe */ - DPRINT1("Connect named pipe\n") if (ConnectNamedPipe(Service->ControlPipeHandle, NULL)) { DWORD dwProcessId = 0; DWORD dwRead = 0; - DPRINT1("Control pipe connected!\n"); + DPRINT("Control pipe connected!\n"); /* Read thread id from pipe */ if (!ReadFile(Service->ControlPipeHandle, @@ -732,7 +731,7 @@ ScmStartUserModeService(PSERVICE Service) } else { - DPRINT1("Connecting control pipe failed!\n"); + DPRINT("Connecting control pipe failed!\n"); /* Close control pipe */ CloseHandle(Service->ControlPipeHandle);