From 7e9212bf1a0fdcebc08876033f95f64973a048b3 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 14 Apr 2021 18:38:42 +0200 Subject: [PATCH] core: order reverse dep table in same way as enum --- src/core/unit.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/unit.c b/src/core/unit.c index f401a1457c6..8f744da2c42 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -2963,8 +2963,8 @@ int unit_add_dependency( static const UnitDependency inverse_table[_UNIT_DEPENDENCY_MAX] = { [UNIT_REQUIRES] = UNIT_REQUIRED_BY, - [UNIT_WANTS] = UNIT_WANTED_BY, [UNIT_REQUISITE] = UNIT_REQUISITE_OF, + [UNIT_WANTS] = UNIT_WANTED_BY, [UNIT_BINDS_TO] = UNIT_BOUND_BY, [UNIT_PART_OF] = UNIT_CONSISTS_OF, [UNIT_UPHOLDS] = UNIT_UPHELD_BY, @@ -2982,8 +2982,6 @@ int unit_add_dependency( [UNIT_ON_SUCCESS_OF] = UNIT_ON_SUCCESS, [UNIT_ON_FAILURE] = UNIT_ON_FAILURE_OF, [UNIT_ON_FAILURE_OF] = UNIT_ON_FAILURE, - [UNIT_REFERENCES] = UNIT_REFERENCED_BY, - [UNIT_REFERENCED_BY] = UNIT_REFERENCES, [UNIT_TRIGGERS] = UNIT_TRIGGERED_BY, [UNIT_TRIGGERED_BY] = UNIT_TRIGGERS, [UNIT_PROPAGATES_RELOAD_TO] = UNIT_RELOAD_PROPAGATED_FROM, @@ -2991,6 +2989,8 @@ int unit_add_dependency( [UNIT_PROPAGATES_STOP_TO] = UNIT_STOP_PROPAGATED_FROM, [UNIT_STOP_PROPAGATED_FROM] = UNIT_PROPAGATES_STOP_TO, [UNIT_JOINS_NAMESPACE_OF] = UNIT_JOINS_NAMESPACE_OF, /* symmetric! 👓 */ + [UNIT_REFERENCES] = UNIT_REFERENCED_BY, + [UNIT_REFERENCED_BY] = UNIT_REFERENCES, [UNIT_IN_SLICE] = UNIT_SLICE_OF, [UNIT_SLICE_OF] = UNIT_IN_SLICE, }; -- 2.47.3