Skip to content
Snippets Groups Projects
Commit 9af04ceb authored by bors's avatar bors
Browse files

Auto merge of #1485 - semarie:openbsd-utime, r=gnzlbg

UTIME_OMIT and UTIME_NOW values are inverted on OpenBSD. correct it

unbreak OpenBSD after #1474
parents 7869d201 255b01e6
No related branches found
No related tags found
No related merge requests found
......@@ -748,8 +748,8 @@ pub const ELAST : ::c_int = 95;
pub const F_DUPFD_CLOEXEC : ::c_int = 10;
pub const UTIME_OMIT: c_long = -2;
pub const UTIME_NOW: c_long = -1;
pub const UTIME_OMIT: c_long = -1;
pub const UTIME_NOW: c_long = -2;
pub const AT_FDCWD: ::c_int = -100;
pub const AT_EACCESS: ::c_int = 0x01;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment