]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
homed: remove misplaced assert() 20592/head
authorLennart Poettering <lennart@poettering.net>
Tue, 31 Aug 2021 08:47:40 +0000 (10:47 +0200)
committerLennart Poettering <lennart@poettering.net>
Tue, 31 Aug 2021 08:51:50 +0000 (10:51 +0200)
src/home/homework-mount.c

index 5e737687d1193150611c1e4a0665d89cad425ae9..da4f14e08d8cba35dd520ef993f0230b7655842c 100644 (file)
@@ -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)