Path symlink follow (#1284)
* Fix the tests for correctly following symlinks. * Correctly follow symlinks in path_link.
This commit is contained in:
committed by
GitHub
parent
bcddce5fe0
commit
c50c24e699
@@ -129,7 +129,11 @@ pub(crate) fn path_create_directory(file: &File, path: &str) -> WasiResult<()> {
|
||||
std::fs::create_dir(&path).map_err(Into::into)
|
||||
}
|
||||
|
||||
pub(crate) fn path_link(resolved_old: PathGet, resolved_new: PathGet) -> WasiResult<()> {
|
||||
pub(crate) fn path_link(
|
||||
resolved_old: PathGet,
|
||||
resolved_new: PathGet,
|
||||
follow_symlinks: bool,
|
||||
) -> WasiResult<()> {
|
||||
unimplemented!("path_link")
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user