diff options
author | Roy Marples <roy@marples.name> | 2009-01-12 23:53:13 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2009-01-12 23:53:13 +0000 |
commit | 3d37005a3d0c9a90578fcb249b823f08a6c58f49 (patch) | |
tree | 005e0d07af432e9fa6723bfbcc315654929e6758 /src/rc/rc-status.c | |
parent | 2243c013900f1d3d850acf066dde2e83f41b3ed9 (diff) |
We now warn about clock skews
rc-update -u will force a regen of the dep tree
rc_newer_than and rc_olderthan now take another two parameters for newest/oldest file and mtime
Diffstat (limited to 'src/rc/rc-status.c')
-rw-r--r-- | src/rc/rc-status.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rc/rc-status.c b/src/rc/rc-status.c index 619b68c3..88018262 100644 --- a/src/rc/rc-status.c +++ b/src/rc/rc-status.c @@ -4,7 +4,7 @@ */ /* - * Copyright 2007-2008 Roy Marples <roy@marples.name> + * Copyright 2007-2009 Roy Marples <roy@marples.name> * All rights reserved * Redistribution and use in source and binary forms, with or without @@ -140,7 +140,7 @@ print_services(const char *runlevel, RC_STRINGLIST *svcs) if (!svcs) return; if (!deptree) - deptree = _rc_deptree_load(NULL); + deptree = _rc_deptree_load(0, NULL); if (!deptree) { TAILQ_FOREACH(s, svcs, entries) if (!runlevel || @@ -260,7 +260,7 @@ rc_status(int argc, char **argv) } /* Output the services in the order in which they would start */ - deptree = _rc_deptree_load(NULL); + deptree = _rc_deptree_load(0, NULL); TAILQ_FOREACH(l, levels, entries) { print_level(l->value); |