utils: fix mount_at()

parent 80d4adf2
......@@ -1253,7 +1253,7 @@ int mount_at(int dfd,
return -EIO;
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
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