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:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user