1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-28 20:25:38 +03:00

core: use UNIT_TRIGGER at more places

Just some minor simplification.
This commit is contained in:
Lennart Poettering 2021-04-15 11:18:31 +02:00 committed by Luca Boccassi
parent 672e9aec1b
commit bc32241e6a
3 changed files with 3 additions and 3 deletions

View File

@ -2015,7 +2015,7 @@ int config_parse_trigger_unit(
assert(rvalue);
assert(data);
if (!hashmap_isempty(u->dependencies[UNIT_TRIGGERS])) {
if (UNIT_TRIGGER(u)) {
log_syntax(unit, LOG_WARNING, filename, line, 0, "Multiple units to trigger specified, ignoring: %s", rvalue);
return 0;
}

View File

@ -316,7 +316,7 @@ static int path_add_trigger_dependencies(Path *p) {
assert(p);
if (!hashmap_isempty(UNIT(p)->dependencies[UNIT_TRIGGERS]))
if (UNIT_TRIGGER(UNIT(p)))
return 0;
r = unit_load_related_unit(UNIT(p), ".service", &x);

View File

@ -124,7 +124,7 @@ static int timer_add_trigger_dependencies(Timer *t) {
assert(t);
if (!hashmap_isempty(UNIT(t)->dependencies[UNIT_TRIGGERS]))
if (UNIT_TRIGGER(UNIT(t)))
return 0;
r = unit_load_related_unit(UNIT(t), ".service", &x);