Move device name off fs and onto context
This commit is contained in:
parent
ace4222a82
commit
11c91acdcf
|
@ -1750,7 +1750,7 @@ function stat(fs, context, path, callback) {
|
||||||
if(error) {
|
if(error) {
|
||||||
callback(error);
|
callback(error);
|
||||||
} else {
|
} else {
|
||||||
var stats = new Stats(path, result, fs.name);
|
var stats = new Stats(path, result, context.name);
|
||||||
callback(null, stats);
|
callback(null, stats);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1763,7 +1763,7 @@ function fstat(fs, context, fd, callback) {
|
||||||
if(error) {
|
if(error) {
|
||||||
callback(error);
|
callback(error);
|
||||||
} else {
|
} else {
|
||||||
var stats = new Stats(ofd.path, result, fs.name);
|
var stats = new Stats(ofd.path, result, context.name);
|
||||||
callback(null, stats);
|
callback(null, stats);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1846,7 +1846,7 @@ function readFile(fs, context, path, options, callback) {
|
||||||
return callback(err);
|
return callback(err);
|
||||||
}
|
}
|
||||||
|
|
||||||
var stats = new Stats(ofd.path, fstatResult, fs.name);
|
var stats = new Stats(ofd.path, fstatResult, context.name);
|
||||||
|
|
||||||
if(stats.isDirectory()) {
|
if(stats.isDirectory()) {
|
||||||
cleanup();
|
cleanup();
|
||||||
|
@ -2427,7 +2427,7 @@ function lstat(fs, context, path, callback) {
|
||||||
if(error) {
|
if(error) {
|
||||||
callback(error);
|
callback(error);
|
||||||
} else {
|
} else {
|
||||||
var stats = new Stats(path, result, fs.name);
|
var stats = new Stats(path, result, context.name);
|
||||||
callback(null, stats);
|
callback(null, stats);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -205,6 +205,7 @@ function FileSystem(options, callback) {
|
||||||
function complete(error) {
|
function complete(error) {
|
||||||
function wrappedContext(methodName) {
|
function wrappedContext(methodName) {
|
||||||
var context = provider[methodName]();
|
var context = provider[methodName]();
|
||||||
|
context.name = name;
|
||||||
context.flags = flags;
|
context.flags = flags;
|
||||||
context.changes = [];
|
context.changes = [];
|
||||||
context.guid = wrappedGuidFn(context);
|
context.guid = wrappedGuidFn(context);
|
||||||
|
|
Loading…
Reference in New Issue