diff options
author | Pino Toscano <toscano.pino@tiscali.it> | 2013-03-22 16:59:27 +0100 |
---|---|---|
committer | Pino Toscano <toscano.pino@tiscali.it> | 2013-03-22 16:59:27 +0100 |
commit | b1f475196174db8bc750b545f23449dd5859d965 (patch) | |
tree | d62e67349927b0512a6849508d36ca4ad6512005 /example-23/fusexmp.c.patch | |
parent | 70bf9589f3718ee6162eb7f0320f44a743b80b6d (diff) |
Remove examples for compatibility < 25
* configure.ac (AC_CONFIG_FILES): Remove example/Makefile, example-22/Makefile,
example-23/Makefile, example-24/Makefile.
* example/.gitignore: Remove.
* example/Makefile.am: Likewise.
* example/fusexmp.c: Likewise.
* example/fusexmp.c.patch: Likewise.
* example/hello.c: Likewise.
* example/null.c: Likewise.
* example-22/.gitignore: Likewise.
* example-22/Makefile.am: Likewise.
* example-22/fusexmp.c: Likewise.
* example-22/fusexmp.c.patch: Likewise.
* example-22/hello.c: Likewise.
* example-22/null.c: Likewise.
* example-23/.gitignore: Likewise.
* example-23/Makefile.am: Likewise.
* example-23/fusexmp.c: Likewise.
* example-23/fusexmp.c.patch: Likewise.
* example-23/fusexmp_fh.c: Likewise.
* example-23/fusexmp_fh.c.patch: Likewise.
* example-23/hello.c: Likewise.
* example-23/null.c: Likewise.
* example-24/.gitignore: Likewise.
* example-24/Makefile.am: Likewise.
* example-24/fusexmp.c: Likewise.
* example-24/fusexmp.c.patch: Likewise.
* example-24/fusexmp_fh.c: Likewise.
* example-24/fusexmp_fh.c.patch: Likewise.
* example-24/hello.c: Likewise.
* example-24/hello_ll.c: Likewise.
* example-24/null.c: Likewise.
Diffstat (limited to 'example-23/fusexmp.c.patch')
-rw-r--r-- | example-23/fusexmp.c.patch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/example-23/fusexmp.c.patch b/example-23/fusexmp.c.patch deleted file mode 100644 index 2d0054b1f..000000000 --- a/example-23/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; - |