Commit a8b71c27 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

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

the error message.
parent f69d7bf0
...@@ -653,7 +653,8 @@ static DWORD WINAPI service_control_dispatcher(LPVOID arg) ...@@ -653,7 +653,8 @@ static DWORD WINAPI service_control_dispatcher(LPVOID arg)
if (pipe==INVALID_HANDLE_VALUE) 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; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment