diff options
Diffstat (limited to '')
-rw-r--r-- | src/core/namespace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/namespace.c b/src/core/namespace.c index 4db3f1a90e..cb23c6c1be 100644 --- a/src/core/namespace.c +++ b/src/core/namespace.c @@ -1637,8 +1637,8 @@ static int apply_one_mount( q = make_mount_point_inode_from_path(what, mount_entry_path(m), 0755); if (q < 0 && q != -EEXIST) - log_error_errno(q, "Failed to create destination mount point node '%s': %m", - mount_entry_path(m)); + log_warning_errno(q, "Failed to create destination mount point node '%s', ignoring: %m", + mount_entry_path(m)); else try_again = true; } |