1
0
mirror of https://github.com/fuse-friends/fuse-native synced 2024-10-27 18:34:01 +00:00

Compare commits

..

No commits in common. "master" and "v2.2.5" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View File

@ -263,13 +263,13 @@ class Fuse extends Nanoresource {
switch (name) {
case 'write':
case 'read':
return cb(TIMEOUT_ERRNO, 0, input[2].buffer)
return cb(TIMEOUT_ERRNO, 0, input[2])
case 'setxattr':
return cb(TIMEOUT_ERRNO, input[2].buffer)
return cb(TIMEOUT_ERRNO, input[2])
case 'getxattr':
return cb(TIMEOUT_ERRNO, input[2].buffer)
return cb(TIMEOUT_ERRNO, input[2])
case 'listxattr':
return cb(TIMEOUT_ERRNO, input[1].buffer)
return cb(TIMEOUT_ERRNO, input[1])
}
}

View File

@ -1,6 +1,6 @@
{
"name": "fuse-native",
"version": "2.2.6",
"version": "2.2.5",
"description": "Fully maintained fuse bindings for Node that aims to cover the entire FUSE api",
"main": "index.js",
"bin": {