glnx porting: Drop use of gs_file_openat_noatime

As noted previously the "noatime" thing is mostly obsoleted by
relatime.

Closes: #319
Approved by: jlebon
This commit is contained in:
Colin Walters 2016-06-03 10:22:05 -04:00 committed by Atomic Bot
parent 882561b01c
commit 5a996c04de

View File

@ -3091,8 +3091,13 @@ _ostree_repo_read_bare_fd (OstreeRepo *self,
_ostree_loose_path (loose_path_buf, checksum, OSTREE_OBJECT_TYPE_FILE, self->mode);
return gs_file_openat_noatime (self->objects_dir_fd, loose_path_buf, out_fd,
cancellable, error);
*out_fd = openat (self->objects_dir_fd, loose_path_buf, O_RDONLY | O_CLOEXEC);
if (*out_fd < 0)
{
glnx_set_error_from_errno (error);
return FALSE;
}
return TRUE;
}
/**