diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | login/tst-grantpt.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2007-08-17 Jakub Jelinek <jakub@redhat.com> + + * login/tst-grantpt.c (test_einval): Add 3rd argument to open. + 2007-08-16 Jakub Jelinek <jakub@redhat.com> * elf/Makefile ($(objpfx)ld.so): Use readelf -s and awk instead of nm -u 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", |