Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Silbe <sascha-pgp@silbe.org>2010-06-03 14:37:16 (GMT)
committer Sascha Silbe <sascha-pgp@silbe.org>2010-06-03 14:37:16 (GMT)
commitcb6a6f773e3414a6acc74a18a5fe6f718615ce19 (patch)
tree91097905928d8dc3227e7d1ced6267219c65e642
parenta491b9c33f8f2f73dcf6d806e568cbf135c99e60 (diff)
fix fgetattr (confused FTE because the permissions were different)
-rwxr-xr-xdatastore-fuse.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/datastore-fuse.py b/datastore-fuse.py
index ce9e4e2..480faf7 100755
--- a/datastore-fuse.py
+++ b/datastore-fuse.py
@@ -324,8 +324,7 @@ class DataStoreFile(object):
@trace()
def fgetattr(self):
- return os.fstat(self._file.fileno())
-# return self._filesystem.getattr(self._path)
+ return self._filesystem.getattr(self._path)
@trace()
def ftruncate(self, length):