1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 01:51:47 +02:00

Merge pull request #12785 from NixOS/mergify/bp/2.27-maintenance/pr-12758

libutil: Fix error message (backport #12758)
This commit is contained in:
mergify[bot] 2025-03-28 19:23:41 +00:00 committed by GitHub
commit d891f233cb
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