summaryrefslogtreecommitdiff
path: root/src/librc
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-05-12 23:33:40 +0000
committerRoy Marples <roy@marples.name>2008-05-12 23:33:40 +0000
commitf13ea774917a45476fed63a3f9c129897da20b6b (patch)
treed13ae560fe55f90e8a60c58fda819b0f79f7b641 /src/librc
parenta89171ee9b20ec7062f77dc651fa873690fb50d5 (diff)
downloadopenrc-f13ea774917a45476fed63a3f9c129897da20b6b.tar.gz
openrc-f13ea774917a45476fed63a3f9c129897da20b6b.tar.bz2
openrc-f13ea774917a45476fed63a3f9c129897da20b6b.tar.xz
The real fix for the last commit is to uncomment some code - d'oh.
Diffstat (limited to 'src/librc')
-rw-r--r--src/librc/librc-depend.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/librc/librc-depend.c b/src/librc/librc-depend.c
index ac8245f..f372a56 100644
--- a/src/librc/librc-depend.c
+++ b/src/librc/librc-depend.c
@@ -431,12 +431,11 @@ static void visit_service(const RC_DEPTREE *deptree,
TAILQ_FOREACH(service, dt->services, entries) {
if (!(di = get_depinfo(deptree, service->value)))
continue;
-
provided = get_provided(di, runlevel, options);
TAILQ_FOREACH(p, provided, entries)
if (strcmp (p->value, depinfo->service) == 0) {
- //visit_service (deptree, types, sorted, visited, di,
- // runlevel, options | RC_DEP_TRACE);
+ visit_service (deptree, types, sorted, visited, di,
+ runlevel, options | RC_DEP_TRACE);
break;
}
rc_stringlist_free(provided);