1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-03-11 04:58:19 +03:00

homectl: add missing break

(cherry picked from commit 464ec1dec741e31d7bf08a4b7bb5a64a6adbb81d)
(cherry picked from commit eae11e3f064372ec30efe460381ce807238daa82)
(cherry picked from commit 8af5e945c7d489e7cf4c1dd29612e5452122b754)
(cherry picked from commit 73fd23631111ea8daefceeef61fb02bfd4e49b96)
This commit is contained in:
Lennart Poettering 2023-02-17 22:24:10 +01:00 committed by Luca Boccassi
parent f74a15ecfc
commit f61016afa7

View File

@ -3613,6 +3613,7 @@ static int parse_argv(int argc, char *argv[]) {
r = drop_from_identity("rebalanceWeight");
if (r < 0)
return r;
break;
}
if (streq(optarg, "off"))
@ -3695,6 +3696,7 @@ static int parse_argv(int argc, char *argv[]) {
r = drop_from_identity("dropCaches");
if (r < 0)
return r;
break;
}
r = parse_boolean_argument("--drop-caches=", optarg, &drop_caches);