summaryrefslogtreecommitdiff
path: root/test/misc
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2019-10-29 11:52:00 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2019-10-29 11:52:00 +0100
commit661ae943f9c9f3bcd8ea2b20d833cca632a8d55f (patch)
treee52f7dc542c6486f8ce302301a12d6a7a656ae99 /test/misc
parent6ea1471d624428f810b72113859e3f7739fcaf03 (diff)
parente3b758dc9f74d6b7ec5b19df1d192a0eec6acd40 (diff)
Merge remote-tracking branch 'github/master'
Diffstat (limited to 'test/misc')
-rw-r--r--test/misc/tst-nftw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/misc/tst-nftw.c b/test/misc/tst-nftw.c
index 970dfc2..7a08c78 100644
--- a/test/misc/tst-nftw.c
+++ b/test/misc/tst-nftw.c
@@ -35,9 +35,9 @@ do_test(void)
perror("Creating path");
if ((mkdir(subpath, 0700)) < 0)
perror("Creating subpath");
- if ((open(filepath, O_CREAT)) < 0)
+ if ((open(filepath, O_CREAT, 0600)) < 0)
perror("Opening filepath");
- if ((open(filesubpath, O_CREAT)) < 0)
+ if ((open(filesubpath, O_CREAT, 0600)) < 0)
perror("Opening filesubpath");
if (nftw(path, process_one_entry, 100, (FTW_CHDIR|FTW_DEPTH|FTW_PHYS)) < 0)