Roy Shea : net.exe: Added missing service name.

Alexandre Julliard julliard at winehq.org
Wed Oct 3 06:08:15 CDT 2007


Module: wine
Branch: master
Commit: c8c43acc2b5dba5cf1b30777daad522f34ffbf31
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c8c43acc2b5dba5cf1b30777daad522f34ffbf31

Author: Roy Shea <roy at cs.hmc.edu>
Date:   Tue Oct  2 10:00:45 2007 -0700

net.exe: Added missing service name.

---

 programs/net/net.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/programs/net/net.c b/programs/net/net.c
index 73e1763..4bc3652 100644
--- a/programs/net/net.c
+++ b/programs/net/net.c
@@ -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);




More information about the wine-cvs mailing list