diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-10-28 03:38:52 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-10-28 03:38:52 +0200 |
commit | f14e15f8affe906a45d8afc76c302a49cd1f70ee (patch) | |
tree | 5af3ffd29e33fddde628d8a79ea7400a9025aaf6 /src/unit.h | |
parent | 799fd0fd23028a58e1f605c6b0d9aaab65b4fb1f (diff) |
unit: replace recursive_stop by stop_retroactively to simplify things a little
Diffstat (limited to 'src/unit.h')
-rw-r--r-- | src/unit.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/unit.h b/src/unit.h index 3f0ef01c5e..8b6b58e53b 100644 --- a/src/unit.h +++ b/src/unit.h @@ -105,7 +105,7 @@ enum UnitDependency { /* Inverse of the above */ UNIT_REQUIRED_BY, /* inverse of 'requires' and 'requisite' is 'required_by' */ - UNIT_REQUIRED_BY_OVERRIDABLE, /* inverse of 'soft_requires' and 'soft_requisite' is 'soft_required_by' */ + UNIT_REQUIRED_BY_OVERRIDABLE, /* inverse of 'requires_overridable' and 'requisite_overridable' is 'soft_required_by' */ UNIT_WANTED_BY, /* inverse of 'wants' */ /* Negative dependencies */ @@ -191,8 +191,8 @@ struct Meta { /* Error code when we didn't manage to load the unit (negative) */ int load_error; - /* If we go down, pull down everything that depends on us, too */ - bool recursive_stop; + /* If some required dep goes down, pull down ourselves, too */ + bool stop_retroactively; /* Garbage collect us we nobody wants or requires us anymore */ bool stop_when_unneeded; |