natFileDescriptorPosix.cc (open): Change error message formatting.
authorTom Tromey <tromey@redhat.com>
Tue, 26 Jun 2001 03:27:57 +0000 (03:27 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Tue, 26 Jun 2001 03:27:57 +0000 (03:27 +0000)
* java/io/natFileDescriptorPosix.cc (open): Change error message
formatting.  From David Brownell.

From-SVN: r43564

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

index 3b6404bf19924e45ec089faf074d0621b8b135e8..2ec86c532641ca62c547eb74a25c9d8d975594aa 100644 (file)
@@ -1,3 +1,8 @@
+2001-06-25  Tom Tromey  <tromey@redhat.com>
+
+       * java/io/natFileDescriptorPosix.cc (open): Change error message
+       formatting.  From David Brownell.
+
 2001-06-21  Tom Tromey  <tromey@redhat.com>
 
        * include/java-interp.h (_Jv_InterpClass): Use JV_MARKOBJ_DECL.
index cb7a164d93494f3e2b49b4a2392b8179d4681365..4e05cfe1df340e9d42ad4895e250b6875962ee40 100644 (file)
@@ -109,7 +109,9 @@ java::io::FileDescriptor::open (jstring path, jint jflags)
   if (fd == -1)
     {
       char msg[MAXPATHLEN + 200];
-      sprintf (msg, "%s: %s", buf, strerror (errno));
+      // We choose the formatting here for JDK compatibility, believe
+      // it or not.
+      sprintf (msg, "%s (%s)", buf, strerror (errno));
       throw new FileNotFoundException (JvNewStringLatin1 (msg));
     }
   return fd;