Fedora is catching calls to open which have O_CREAT set w/o a mode.

Merge of master-melb:xfs-cmds:32535a by kenmcd.

  Fedora is catching calls to open which have O_CREAT set w/o a mode.
This commit is contained in:
Barry Naujok
2008-11-25 03:10:07 +00:00
parent 20167de5d0
commit 4be0d16663
+1 -1
View File
@@ -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));