From 67f9bf897c762ecb61872a5e8e0707a97c8ccd3d Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 31 Aug 2021 10:47:40 +0200 Subject: [PATCH] homed: remove misplaced assert() --- src/home/homework-mount.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/home/homework-mount.c b/src/home/homework-mount.c index 5e737687d11..da4f14e08d8 100644 --- a/src/home/homework-mount.c +++ b/src/home/homework-mount.c @@ -69,9 +69,10 @@ int home_move_mount(const char *user_name_and_realm, const char *target) { const char *d; int r; - assert(user_name_and_realm); assert(target); + /* If user_name_and_realm is set, then we'll mount a subdir of the source mount into the host. If + * it's NULL we'll move the mount itself */ if (user_name_and_realm) { subdir = path_join("/run/systemd/user-home-mount/", user_name_and_realm); if (!subdir) -- 2.47.3