advapi32: If we can't connect to a service's pipe, name the service in
the error message.
This commit is contained in:
parent
f69d7bf0f3
commit
a8b71c2727
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue