1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-12 21:46:01 +01:00

Merge pull request #12784 from NixOS/mergify/bp/2.26-maintenance/pr-12758

libutil: Fix error message (backport #12758)
This commit is contained in:
mergify[bot] 2025-03-28 19:18:47 +00:00 committed by GitHub
commit 20e67b8bb6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -680,7 +680,7 @@ void setWriteTime(
if (utimes(path.c_str(), times) == -1)
throw SysError("changing modification time of %s (not a symlink)", path);
} else {
throw Error("Cannot modification time of symlink %s", path);
throw Error("Cannot change modification time of symlink %s", path);
}
#endif
#endif