Update of /cvsroot/gtkpod/libgpod/src
In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv19569/src

Modified Files:
        itdb_itunesdb.c 
Log Message:
        * src/itdb_itunesdb.c (wcontents_write): added g_strerror in error
          messages.



Index: itdb_itunesdb.c
===================================================================
RCS file: /cvsroot/gtkpod/libgpod/src/itdb_itunesdb.c,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -d -r1.64 -r1.65
--- itdb_itunesdb.c     24 Jun 2006 11:09:53 -0000      1.64
+++ itdb_itunesdb.c     28 Jun 2006 15:13:49 -0000      1.65
@@ -1,4 +1,4 @@
-/* Time-stamp: <2006-06-24 19:52:24 jcs>
+/* Time-stamp: <2006-06-29 00:11:00 jcs>
 |
 |  Copyright (C) 2002-2005 Jorg Schuler <jcsjcs at users sourceforge net>
 |  Part of the gtkpod project.
@@ -4095,8 +4095,8 @@
     {
        cts->error = g_error_new (G_FILE_ERROR,
                                  g_file_error_from_errno (errno),
-                                 _("Opening of '%s' for writing failed."),
-                                 cts->filename);
+                                 _("Opening of '%s' for writing failed (%s)."),
+                                 cts->filename, g_strerror (errno));
        return FALSE;
     }
     if (cts->contents && cts->pos)
@@ -4106,8 +4106,8 @@
        {
            cts->error = g_error_new (G_FILE_ERROR,
                                      g_file_error_from_errno (errno),
-                                     _("Writing to '%s' failed."),
-                                     cts->filename);
+                                     _("Writing to '%s' failed (%s)."),
+                                     cts->filename, g_strerror (errno));
            close (fd);
            return FALSE;
        }


Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2

Reply via email to