diff options
author | unknown <reggie@linux.site> | 2005-08-10 05:02:37 -0600 |
---|---|---|
committer | unknown <reggie@linux.site> | 2005-08-10 05:02:37 -0600 |
commit | 259da9d157deed4a141731e3259b84aed958d1b1 (patch) | |
tree | 3ea151d3c8727ecd97e8612bd8354f03988c5037 /server-tools/instance-manager/IMService.cpp | |
parent | 2bd3255ebb9e48e39b9d5d84c7826edd8932d00a (diff) | |
parent | f766a1dc41e7b72741746a462704dc42562b2b86 (diff) | |
download | mariadb-git-259da9d157deed4a141731e3259b84aed958d1b1.tar.gz |
Merge rburnett@bk-internal.mysql.com:/home/bk/mysql-5.0
into linux.site:/home/reggie/bk/mysql-5.0-new
server-tools/instance-manager/IMService.cpp:
Auto merged
Diffstat (limited to 'server-tools/instance-manager/IMService.cpp')
-rw-r--r-- | server-tools/instance-manager/IMService.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server-tools/instance-manager/IMService.cpp b/server-tools/instance-manager/IMService.cpp index a5070dcf0f6..e040a5da8c2 100644 --- a/server-tools/instance-manager/IMService.cpp +++ b/server-tools/instance-manager/IMService.cpp @@ -50,7 +50,7 @@ int HandleServiceOptions(Options options) else { log_info("Service failed to install"); - ret_val= -1; + ret_val= 1; } } else if (options.remove_service) @@ -62,10 +62,10 @@ int HandleServiceOptions(Options options) else { log_info("Service failed to remove"); - ret_val= -1; + ret_val= 1; } } else - return (int)winService.Init(); + ret_val= !winService.Init(); return ret_val; } |