1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-26 08:55:18 +03:00

homectl: add missing break

(cherry picked from commit 464ec1dec7)
(cherry picked from commit eae11e3f06)
This commit is contained in:
Lennart Poettering 2023-02-17 22:24:10 +01:00 committed by Zbigniew Jędrzejewski-Szmek
parent e72f1676af
commit 8af5e945c7

View File

@ -3653,6 +3653,7 @@ static int parse_argv(int argc, char *argv[]) {
r = drop_from_identity("rebalanceWeight");
if (r < 0)
return r;
break;
}
if (streq(optarg, "off"))
@ -3735,6 +3736,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);