utils: fix mount_at()

parent 80d4adf2
...@@ -1253,7 +1253,7 @@ int mount_at(int dfd, ...@@ -1253,7 +1253,7 @@ int mount_at(int dfd,
return -EIO; return -EIO;
if (!is_empty_string(src_buf)) if (!is_empty_string(src_buf))
ret = mount(src_under_dfd, dst_buf, fstype, mnt_flags, data); ret = mount(src_buf, dst_buf, fstype, mnt_flags, data);
else else
ret = mount(NULL, dst_buf, fstype, mnt_flags, data); ret = mount(NULL, dst_buf, fstype, mnt_flags, data);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment