summaryrefslogtreecommitdiff
path: root/filesystems/fs-utils/patches
diff options
context:
space:
mode:
authorstacktic <stacktic>2013-07-05 17:25:23 +0000
committerstacktic <stacktic>2013-07-05 17:25:23 +0000
commit90cc2df29a15feedc3eed6f7183ebd6b2b6d3667 (patch)
treed1cfd2a1c420c18ea80b9ba6631bc1d521c2d3c2 /filesystems/fs-utils/patches
parent80d05b7e2acfadffd91bf03def91d7ebf1c22228 (diff)
downloadpkgsrc-90cc2df29a15feedc3eed6f7183ebd6b2b6d3667.tar.gz
Update filesystems/fs-utils to 20130701 - release v1.00
Diffstat (limited to 'filesystems/fs-utils/patches')
-rw-r--r--filesystems/fs-utils/patches/patch-lib_mount__v7fs.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/filesystems/fs-utils/patches/patch-lib_mount__v7fs.c b/filesystems/fs-utils/patches/patch-lib_mount__v7fs.c
deleted file mode 100644
index eb3c13de1d2..00000000000
--- a/filesystems/fs-utils/patches/patch-lib_mount__v7fs.c
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-lib_mount__v7fs.c,v 1.1 2013/06/18 18:52:10 wiz Exp $
-
-Function returning void shouldn't return values.
-
---- lib/mount_v7fs.c.orig 2013-06-01 12:54:14.000000000 +0000
-+++ lib/mount_v7fs.c
-@@ -155,13 +155,13 @@ mount_v7fs_parseargs(int argc, char **ar
- case '?':
-
- default:
-- return 1;
-+ return;
- }
- argc -= optind;
- argv += optind;
-
- if (argc != 2)
-- return 1;
-+ return;
-
- pathadj(argv[0], canon_dev);
- args->endian = endian;