diff --git a/lib/wasix/src/fs/mod.rs b/lib/wasix/src/fs/mod.rs index b655ba1eced..fd8db0d5978 100644 --- a/lib/wasix/src/fs/mod.rs +++ b/lib/wasix/src/fs/mod.rs @@ -930,7 +930,8 @@ impl WasiFs { let (pre_open_dir_fd, relative_path) = if link_value.is_relative() { self.path_into_pre_open_and_relative_path(&file)? } else { - unimplemented!("Absolute symlinks are not yet supported"); + tracing::error!("Absolute symlinks are not yet supported"); + return Err(Errno::Notsup); }; loop_for_symlink = true; symlink_count += 1;