summaryrefslogtreecommitdiff
path: root/example-24/fusexmp.c.patch
diff options
context:
space:
mode:
Diffstat (limited to 'example-24/fusexmp.c.patch')
-rw-r--r--example-24/fusexmp.c.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/example-24/fusexmp.c.patch b/example-24/fusexmp.c.patch
deleted file mode 100644
index 2d0054b1f..000000000
--- a/example-24/fusexmp.c.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- fusexmp.c.orig 2005-12-02 01:47:51.000000000 +0100
-+++ fusexmp.c 2005-12-02 01:51:26.000000000 +0100
-@@ -79,7 +79,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;
-