From: Lennart Poettering Date: Tue, 31 Aug 2021 08:47:40 +0000 (+0200) Subject: homed: remove misplaced assert() X-Git-Tag: v250-rc1~752^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F20592%2Fhead;p=thirdparty%2Fsystemd.git homed: remove misplaced assert() --- 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)