natFile.cc (performMkdir): Remove FIXME.
authorBryce McKinlay <bryce@albatross.co.nz>
Tue, 3 Aug 1999 00:32:14 +0000 (00:32 +0000)
committerBryce McKinlay <bryce@gcc.gnu.org>
Tue, 3 Aug 1999 00:32:14 +0000 (01:32 +0100)
        * java/io/natFile.cc (performMkdir): Remove FIXME.
        * java/io/natFileDescriptorPosix.cc (open): Use 0644 file mode.

From-SVN: r28430

libjava/ChangeLog
libjava/java/io/natFile.cc
libjava/java/io/natFileDescriptorPosix.cc

index dcaae77..5d10fd8 100644 (file)
@@ -10,6 +10,8 @@
        null.
        * java/net/natPlainDatagramSocketImpl (bind): Expect `0.0.0.0'
        instead of null.
+       * java/io/natFile.cc (performMkdir): Remove FIXME.
+       * java/io/natFileDescriptorPosix.cc (open): Use 0644 file mode.
 
 1999-08-01  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
index 9b9a4af..968bd6d 100644 (file)
@@ -227,7 +227,6 @@ java::io::File::performMkdir (void)
   buf[total] = '\0';
 
 #ifdef HAVE_MKDIR
-  // FIXME: mode.
   return ::mkdir (buf, 0755) == 0;
 #else
   return false;
index 3efd8e4..13dcd53 100644 (file)
@@ -96,8 +96,7 @@ java::io::FileDescriptor::open (jstring path, jint jflags)
        flags |= O_TRUNC;
     }
 
-  // FIXME: mode?
-  int fd = ::open (buf, flags, 0755);
+  int fd = ::open (buf, flags, 0644);
   if (fd == -1)
     {
       char msg[MAXPATHLEN + 200];