diff options
author | Lennart Poettering <lennart@poettering.net> | 2021-08-31 10:47:40 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2021-08-31 10:51:50 +0200 |
commit | 67f9bf897c762ecb61872a5e8e0707a97c8ccd3d (patch) | |
tree | 082bb6be405cb4aac31b400de3c57c5b0ae28226 /src/home/homework-mount.c | |
parent | homed: add missing SYNTHETIC_ERRNO() (diff) | |
download | systemd-67f9bf897c762ecb61872a5e8e0707a97c8ccd3d.tar.xz systemd-67f9bf897c762ecb61872a5e8e0707a97c8ccd3d.zip |
homed: remove misplaced assert()
Diffstat (limited to 'src/home/homework-mount.c')
-rw-r--r-- | src/home/homework-mount.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/home/homework-mount.c b/src/home/homework-mount.c index 5e737687d1..da4f14e08d 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) |