diff options
author | Juan RP <xtraeme@gmail.com> | 2009-04-30 16:45:18 +0100 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2009-04-30 16:45:18 +0100 |
commit | a1e40e9beb621dbe342515ee0380c67837112a61 (patch) | |
tree | 2d1913479a42fad20c36cd270cac176a2539003f | |
parent | b70501ef452e896b1164290e3575ef7d89926f07 (diff) |
Fix parens
-rw-r--r-- | src/rc/rc-update.c | 2 | ||||
-rw-r--r-- | src/rc/runscript.c | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/rc/rc-update.c b/src/rc/rc-update.c index 6b31ba10..7314f313 100644 --- a/src/rc/rc-update.c +++ b/src/rc/rc-update.c @@ -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]; diff --git a/src/rc/runscript.c b/src/rc/runscript.c index c2688ee0..5dab6763 100644 --- a/src/rc/runscript.c +++ b/src/rc/runscript.c @@ -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); |