[PATCH] xfstests: add mode to open call in devzero.c, which may have O_CREAT set.
Eric Sandeen
sandeen at sandeen.net
Mon Nov 24 11:59:31 CST 2008
Fedora is catching calls to open which have O_CREAT set w/o a mode.
Signed-off-by: Eric Sandeen <sandeen at sandeen.net>
---
Index: xfs-cmds/xfstests/src/devzero.c
===================================================================
--- xfs-cmds.orig/xfstests/src/devzero.c 2005-11-08 20:50:19.000000000 -0600
+++ xfs-cmds/xfstests/src/devzero.c 2008-11-24 10:29:11.211001169 -0600
@@ -74,7 +74,7 @@ main(int argc, char **argv)
path = argv[optind];
- if ((fd = open(path, oflags)) < 0) {
+ if ((fd = open(path, oflags, 0600)) < 0) {
fprintf(stderr,
"error opening \"%s\": %s\n",
path, strerror(errno));
More information about the xfs
mailing list