1
0
mirror of https://github.com/MariaDB/server.git synced 2025-06-13 13:01:51 +03:00

Merge rburnett@bk-internal.mysql.com:/home/bk/mysql-5.0

into  linux.site:/home/reggie/bk/mysql-5.0-new
This commit is contained in:
reggie@linux.site
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;
}