Skip to content
Snippets Groups Projects
Commit c8c43acc authored by Roy Shea's avatar Roy Shea Committed by Alexandre Julliard
Browse files

net.exe: Added missing service name.

parent 05bb6f6c
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment