[tracker] tracker-extract, abw: O_NOATIME requires owner to match, allow fallback
- From: Philip Van Hoof <pvanhoof src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tracker] tracker-extract, abw: O_NOATIME requires owner to match, allow fallback
- Date: Fri, 23 Sep 2011 09:54:26 +0000 (UTC)
commit e258e4b78d556217f4a2d05b2e411905033a4af9
Author: Philip Van Hoof <philip codeminded be>
Date: Fri Sep 23 11:43:29 2011 +0200
tracker-extract, abw: O_NOATIME requires owner to match, allow fallback
src/tracker-extract/tracker-extract-abw.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/src/tracker-extract/tracker-extract-abw.c b/src/tracker-extract/tracker-extract-abw.c
index a72d14a..ca01656 100644
--- a/src/tracker-extract/tracker-extract-abw.c
+++ b/src/tracker-extract/tracker-extract-abw.c
@@ -181,6 +181,9 @@ tracker_extract_get_metadata (TrackerExtractInfo *info)
filename = g_file_get_path (f);
fd = g_open (filename, O_RDONLY | O_NOATIME, 0);
+ if (fd == -1 && errno == EPERM) {
+ fd = g_open (filename, O_RDONLY, 0);
+ }
if (fd == -1) {
g_warning ("Could not open abw file '%s': %s\n",
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]