Commit c8c43acc authored by Roy Shea's avatar Roy Shea Committed by Alexandre Julliard

net.exe: Added missing service name.

parent 05bb6f6c
......@@ -99,8 +99,8 @@ static BOOL net_service(int operation, char *service_name)
output_string(STRING_START_SVC, service_display_name);
result = StartService(serviceHandle, 0, NULL);
if(result) output_string(STRING_START_SVC_SUCCESS);
else output_string(STRING_START_SVC_FAIL);
if(result) output_string(STRING_START_SVC_SUCCESS, service_display_name);
else output_string(STRING_START_SVC_FAIL, service_display_name);
break;
case NET_STOP:
output_string(STRING_STOP_SVC, service_display_name);
......
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