From d1d6d48577816dbe3c29b5db22e67b60c0a39e12 Mon Sep 17 00:00:00 2001 From: Manish Singh Date: Fri, 20 May 2005 17:06:26 +0000 Subject: [PATCH] Fix ytpo in wget command line so it actually works. 2005-05-20 Manish Singh * plug-ins/uri/uri-backend-wget.c (uri_backend_load_image): Fix ytpo in wget command line so it actually works. --- ChangeLog | 5 +++++ plug-ins/uri/uri-backend-wget.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 98ad7445bc..6fffb38196 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-05-20 Manish Singh + + * plug-ins/uri/uri-backend-wget.c (uri_backend_load_image): Fix ytpo + in wget command line so it actually works. + 2005-05-20 Michael Natterer * app/core/gimpdashpattern.c: don't include "libgimpbase/gimpbase.h" diff --git a/plug-ins/uri/uri-backend-wget.c b/plug-ins/uri/uri-backend-wget.c index f055f44002..be0414ef53 100644 --- a/plug-ins/uri/uri-backend-wget.c +++ b/plug-ins/uri/uri-backend-wget.c @@ -98,7 +98,7 @@ uri_backend_load_image (const gchar *uri, putenv ("LANG=C"); #endif - execlp ("wget", "wget", "e", "server-response=off", "-T", TIMEOUT, + execlp ("wget", "wget", "-e", "server-response=off", "-T", TIMEOUT, uri, "-O", tmpname, NULL); g_set_error (error, 0, 0, "exec() failed: wget: %s", g_strerror (errno)); _exit (127);