Fix parens

This commit is contained in:
Juan RP 2009-04-30 16:45:18 +01:00 committed by Roy Marples
parent b70501ef45
commit a1e40e9beb
2 changed files with 2 additions and 3 deletions

View File

@ -210,7 +210,7 @@ rc_update(int argc, char **argv)
runlevels = rc_stringlist_new();
if (optind >= argc) {
if (! action & DOSHOW)
if (!(action & DOSHOW))
eerrorx("%s: no service specified", applet);
} else {
service = argv[optind];

View File

@ -586,8 +586,7 @@ svc_start(bool deps)
state = rc_service_state(service);
if (rc_yesno(getenv("IN_HOTPLUG")) || in_background) {
if (! state & RC_SERVICE_INACTIVE &&
! state & RC_SERVICE_STOPPED)
if (!(state & (RC_SERVICE_INACTIVE | RC_SERVICE_STOPPED)))
exit(EXIT_FAILURE);
background = true;
rc_service_mark(service, RC_SERVICE_HOTPLUGGED);