1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-12-24 21:34:08 +03:00

core: add missing 'continue' statement

This commit is contained in:
Lennart Poettering 2018-10-09 15:33:13 +02:00
parent b03d6c5f48
commit 5f616d5feb

View File

@ -3602,6 +3602,8 @@ int unit_deserialize(Unit *u, FILE *f, FDSet *fds) {
else
unit_ref_uid_gid(u, UID_INVALID, gid);
continue;
} else if (streq(l, "ref")) {
r = strv_extend(&u->deserialized_refs, v);