gimp r27116 - in trunk: . plug-ins/file-uri



Author: mitch
Date: Fri Oct  3 12:58:41 2008
New Revision: 27116
URL: http://svn.gnome.org/viewvc/gimp?rev=27116&view=rev

Log:
2008-10-03  Michael Natterer  <mitch gimp org>

	Bug 554785 â Compile failure on uri-backend-libcurl

	* plug-ins/file-uri/uri-backend-libcurl.c: apply patch from Robby
	Workman which fixes the build for this file.



Modified:
   trunk/ChangeLog
   trunk/plug-ins/file-uri/uri-backend-libcurl.c

Modified: trunk/plug-ins/file-uri/uri-backend-libcurl.c
==============================================================================
--- trunk/plug-ins/file-uri/uri-backend-libcurl.c	(original)
+++ trunk/plug-ins/file-uri/uri-backend-libcurl.c	Fri Oct  3 12:58:41 2008
@@ -21,6 +21,8 @@
 
 #include "config.h"
 
+#include <errno.h>
+
 #include <curl/curl.h>
 #include <curl/types.h>
 #include <curl/easy.h>
@@ -159,7 +161,7 @@
     {
       g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errno),
                    _("Could not open '%s' for writing: %s"),
-                   gimp_filename_to_utf8 (filename),  g_strerror (errno));
+                   gimp_filename_to_utf8 (tmpname),  g_strerror (errno));
       return FALSE;
     }
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]