mirror of
https://github.com/NixOS/nix
synced 2025-06-25 06:31:14 +02:00
libutil: Fix error message
I encountered this with a misconfigured libutil. I doubt that a
non-lutimes config is viable, because tests were failing.
(cherry picked from commit 1cffcd91a9
)
This commit is contained in:
parent
75710a809d
commit
33580356fb
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue