1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

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
This commit is contained in:
unknown
2005-08-10 05:02:37 -06:00
4 changed files with 41 additions and 63 deletions

View File

@ -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;
}