Bug 554785 – Compile failure on uri-backend-libcurl

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.


svn path=/trunk/; revision=27116
This commit is contained in:
Michael Natterer 2008-10-03 12:58:41 +00:00 committed by Michael Natterer
parent f6545ee128
commit 89e6d516e9
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,10 @@
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.
2008-10-03 Sven Neumann <sven@gimp.org>
* configure.in: removed custom error message from checks for babl

View file

@ -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 @@ uri_backend_load_image (const gchar *uri,
{
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;
}