advapi32: If we can't connect to a service's pipe, name the service in

the error message.
This commit is contained in:
Mike McCormack 2006-01-10 12:10:34 +01:00 committed by Alexandre Julliard
parent f69d7bf0f3
commit a8b71c2727
1 changed files with 2 additions and 1 deletions

View File

@ -653,7 +653,8 @@ static DWORD WINAPI service_control_dispatcher(LPVOID arg)
if (pipe==INVALID_HANDLE_VALUE)
{
ERR("failed to create pipe, error = %ld\n", GetLastError());
ERR("failed to create pipe for %s, error = %ld\n",
debugstr_w(service->name), GetLastError());
return 0;
}