aboutsummaryrefslogtreecommitdiff
path: root/src/librc/rc.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/librc/rc.h.in')
-rw-r--r--src/librc/rc.h.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/librc/rc.h.in b/src/librc/rc.h.in
index ede3fc61..7c94c3eb 100644
--- a/src/librc/rc.h.in
+++ b/src/librc/rc.h.in
@@ -256,13 +256,13 @@ const char *rc_sys(void);
* These options can change the services found by the rc_get_depinfo and
* rc_get_depends functions. */
/*! Trace provided services */
-#define RC_DEP_TRACE 0x01
+#define RC_DEP_TRACE (1<<0)
/*! Only use services added to runlevels */
-#define RC_DEP_STRICT 0x02
+#define RC_DEP_STRICT (1<<1)
/*! Runlevel is starting */
-#define RC_DEP_START 0x04
+#define RC_DEP_START (1<<2)
/*! Runlevel is stopping */
-#define RC_DEP_STOP 0x08
+#define RC_DEP_STOP (1<<3)
/*! @name Dependencies
* We analyse each init script and cache the resultant dependency tree.