summaryrefslogtreecommitdiff
path: root/example/fusexmp.c.patch
diff options
context:
space:
mode:
Diffstat (limited to 'example/fusexmp.c.patch')
-rw-r--r--example/fusexmp.c.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/example/fusexmp.c.patch b/example/fusexmp.c.patch
deleted file mode 100644
index 3f01915d0..000000000
--- a/example/fusexmp.c.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- ../../fuse-0-branch-2.2/example/fusexmp.c 2005-11-17 16:17:35.000000000 +0100
-+++ fusexmp.c 2005-03-20 20:56:35.000000000 +0100
-@@ -73,7 +73,12 @@
- {
- int res;
-
-- res = mknod(path, mode, rdev);
-+ /* On the Hurd we must not use mknod() to create files, but creat() */
-+ if(mode & S_IFREG)
-+ res = creat(path, mode & ALLPERMS);
-+ else
-+ res = mknod(path, mode, rdev);
-+
- if(res == -1)
- return -errno;
-