summaryrefslogtreecommitdiff
path: root/src/home
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2023-02-17 22:24:10 +0100
committerLennart Poettering <lennart@poettering.net>2023-02-21 13:35:12 +0100
commit464ec1dec741e31d7bf08a4b7bb5a64a6adbb81d (patch)
treeba7df9e84d9e53a5216f16cf75852ad7aa485241 /src/home
parenta2275dcb9d48925f8192f44ec371710ce812bfce (diff)
downloadsystemd-464ec1dec741e31d7bf08a4b7bb5a64a6adbb81d.tar.gz
homectl: add missing break
Diffstat (limited to 'src/home')
-rw-r--r--src/home/homectl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/home/homectl.c b/src/home/homectl.c
index fd71e98eef..cd24b5e9a5 100644
--- a/src/home/homectl.c
+++ b/src/home/homectl.c
@@ -3638,6 +3638,7 @@ static int parse_argv(int argc, char *argv[]) {
r = drop_from_identity("rebalanceWeight");
if (r < 0)
return r;
+ break;
}
if (streq(optarg, "off"))
@@ -3720,6 +3721,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);