Commit 8dc42c4d authored by bradnelson's avatar bradnelson Committed by Commit bot

Default to returning success in utime.

Restoring the previous behavior of nacl_io regarding utime,
such that it pretends to succeed when a mount doesn't implement utime.

BUG=https://code.google.com/p/chromium/issues/detail?id=414058
TEST=trybots
TBR=binji@chromium.org

Review URL: https://codereview.chromium.org/571773002

Cr-Commit-Position: refs/heads/master@{#294759}
parent 79146d0b
......@@ -177,7 +177,7 @@ Error Node::Tcsetattr(int optional_actions, const struct termios* termios_p) {
}
Error Node::Futimens(const struct timespec times[2]) {
return EINVAL;
return 0;
}
int Node::GetLinks() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment