Fix ytpo in wget command line so it actually works.

2005-05-20  Manish Singh  <yosh@gimp.org>

        * plug-ins/uri/uri-backend-wget.c (uri_backend_load_image): Fix ytpo
        in wget command line so it actually works.
This commit is contained in:
Manish Singh 2005-05-20 17:06:26 +00:00 committed by Manish Singh
parent 8a1ba510c6
commit d1d6d48577
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-05-20 Manish Singh <yosh@gimp.org>
* 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 <mitch@gimp.org>
* app/core/gimpdashpattern.c: don't include "libgimpbase/gimpbase.h"

View File

@ -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);