summaryrefslogtreecommitdiffstats
path: root/vendor/filetime/src/unix/utimensat.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:25 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:25 +0000
commit5363f350887b1e5b5dd21a86f88c8af9d7fea6da (patch)
tree35ca005eb6e0e9a1ba3bb5dbc033209ad445dc17 /vendor/filetime/src/unix/utimensat.rs
parentAdding debian version 1.66.0+dfsg1-1. (diff)
downloadrustc-5363f350887b1e5b5dd21a86f88c8af9d7fea6da.tar.xz
rustc-5363f350887b1e5b5dd21a86f88c8af9d7fea6da.zip
Merging upstream version 1.67.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/filetime/src/unix/utimensat.rs')
-rw-r--r--vendor/filetime/src/unix/utimensat.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/vendor/filetime/src/unix/utimensat.rs b/vendor/filetime/src/unix/utimensat.rs
index 42a1ada2c..c9153a67f 100644
--- a/vendor/filetime/src/unix/utimensat.rs
+++ b/vendor/filetime/src/unix/utimensat.rs
@@ -32,7 +32,7 @@ pub fn set_file_handle_times(
}
pub fn set_symlink_file_times(p: &Path, atime: FileTime, mtime: FileTime) -> io::Result<()> {
- set_times(p, Some(atime), Some(mtime), false)
+ set_times(p, Some(atime), Some(mtime), true)
}
fn set_times(
@@ -42,6 +42,12 @@ fn set_times(
symlink: bool,
) -> io::Result<()> {
let flags = if symlink {
+ if cfg!(target_os = "emscripten") {
+ return Err(io::Error::new(
+ io::ErrorKind::Other,
+ "emscripten does not support utimensat for symlinks",
+ ));
+ }
libc::AT_SYMLINK_NOFOLLOW
} else {
0