Skip to content

Commit

Permalink
turned off caching
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedeboer committed Sep 30, 2010
1 parent 1bf2905 commit a1e9717
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/DAV/fs/directory.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ exports.jsDAV_FS_Directory = jsDAV_FS_Directory;
Fs.statvfs(this.path, function(err, statvfs) {
if (err || !statvfs)
cbfsquota(err, [0, 0]);
_self.$statvfs = statvfs;
//_self.$statvfs = statvfs;
cbfsquota(null, [
(statvfs.blocks - statvfs.bfree),// * statvfs.bsize,
statvfs.bavail// * statvfs.bsize
Expand Down
2 changes: 1 addition & 1 deletion lib/DAV/fs/node.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ exports.jsDAV_FS_Node = jsDAV_FS_Node;
Fs.stat(this.path, function(err, stat) {
if (err || typeof stat == "undefined")
return cbfsgetlm(err);
_self.$stat = stat;
//_self.$stat = stat;
cbfsgetlm(null, stat.mtime);
});
};
Expand Down

0 comments on commit a1e9717

Please sign in to comment.