summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergiu Ivanov <unlimitedscolobb@gmail.com>2008-09-07 22:40:23 +0300
committerSergiu Ivanov <unlimitedscolobb@gmail.com>2008-09-07 22:40:23 +0300
commit06c2f31b8e3d8a5818f2bc28b554a8929a1f722f (patch)
tree1035612191de341da264986defca102faf892539
parentdd5f567d830707ca1530e8e3c2ef7b1c6b4b3862 (diff)
Made nsmux RW
Now nsmux will handle properly the requests to write into proxy nodes, instead of simply returning 0.
-rw-r--r--nsmux.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/nsmux.c b/nsmux.c
index 2ee209740..201d7b1ee 100644
--- a/nsmux.c
+++ b/nsmux.c
@@ -1693,7 +1693,8 @@ netfs_attempt_write
void * data
)
{
- return 0;
+ /*Write the supplied data into the file and return the result*/
+ return io_write(node->nn->port, data, *len, offset, len);
}/*netfs_attempt_write*/
/*----------------------------------------------------------------------------*/
/*Frees all storage associated with the node*/