* login/tst-grantpt.c (test_einval): Add 3rd argument to open.
authorJakub Jelinek <jakub@redhat.com>
Fri, 17 Aug 2007 06:28:40 +0000 (06:28 +0000)
committerJakub Jelinek <jakub@redhat.com>
Fri, 17 Aug 2007 06:28:40 +0000 (06:28 +0000)
2007-08-17  Jakub Jelinek  <jakub@redhat.com>

* login/tst-grantpt.c (test_einval): Add 3rd argument to open.

ChangeLog
login/tst-grantpt.c

index d7a6c40..6c1eaeb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 9b993da..5078dac 100644 (file)
@@ -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",