1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

changes to IM that came from Petr and JimW's review.

This commit is contained in:
reggie@linux.site
2005-08-09 07:57:37 -06:00
parent 633e62bd77
commit 2a00611f9c
3 changed files with 40 additions and 62 deletions

View File

@ -50,7 +50,7 @@ int HandleServiceOptions(Options options)
else
{
log_info("Service failed to install\n");
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\n");
ret_val= -1;
ret_val= 1;
}
}
else
return (int)winService.Init();
ret_val= winService.Init() ? 0 : 1;
return ret_val;
}