summaryrefslogtreecommitdiff
path: root/login
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2007-08-17 06:28:40 +0000
committerJakub Jelinek <jakub@redhat.com>2007-08-17 06:28:40 +0000
commit42282d570b66cbf8fabe2a51fe630985db1d04be (patch)
treeca7bffbdb624f0be55d8e15c5c3b101f2685b31c /login
parentcb84d1e403cf2295307b398ab54cedc6bf9f8973 (diff)
* login/tst-grantpt.c (test_einval): Add 3rd argument to open.
2007-08-17 Jakub Jelinek <jakub@redhat.com> * login/tst-grantpt.c (test_einval): Add 3rd argument to open.
Diffstat (limited to 'login')
-rw-r--r--login/tst-grantpt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/login/tst-grantpt.c b/login/tst-grantpt.c
index 9b993daaca..5078dac26c 100644
--- a/login/tst-grantpt.c
+++ b/login/tst-grantpt.c
@@ -41,7 +41,7 @@ test_einval (void)
int fd, ret, err;
const char file[] = "./grantpt-einval";
- fd = open (file, O_RDWR | O_CREAT);
+ fd = open (file, O_RDWR | O_CREAT, 0600);
if (fd == -1)
{
printf ("open(\"%s\", O_RDWR) failed\nerrno %d (%s)\n",