We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e75244 commit 75ac488Copy full SHA for 75ac488
src/unix/linux_like/linux/musl/lfs64.rs
@@ -114,7 +114,7 @@ pub unsafe extern "C" fn open64(
114
flags: ::c_int,
115
mode: ::mode_t,
116
) -> ::c_int {
117
- ::open(pathname, flags | ::O_LARGEFILE, mode)
+ ::open(pathname, flags, mode)
118
}
119
120
#[inline]
@@ -124,7 +124,7 @@ pub unsafe extern "C" fn openat64(
124
125
126
127
- ::openat(dirfd, pathname, flags | ::O_LARGEFILE, mode)
+ ::openat(dirfd, pathname, flags, mode)
128
129
130
0 commit comments