mirror of https://github.com/GNOME/gimp.git
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:
parent
8a1ba510c6
commit
d1d6d48577
|
@ -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>
|
2005-05-20 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
* app/core/gimpdashpattern.c: don't include "libgimpbase/gimpbase.h"
|
* app/core/gimpdashpattern.c: don't include "libgimpbase/gimpbase.h"
|
||||||
|
|
|
@ -98,7 +98,7 @@ uri_backend_load_image (const gchar *uri,
|
||||||
putenv ("LANG=C");
|
putenv ("LANG=C");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
execlp ("wget", "wget", "e", "server-response=off", "-T", TIMEOUT,
|
execlp ("wget", "wget", "-e", "server-response=off", "-T", TIMEOUT,
|
||||||
uri, "-O", tmpname, NULL);
|
uri, "-O", tmpname, NULL);
|
||||||
g_set_error (error, 0, 0, "exec() failed: wget: %s", g_strerror (errno));
|
g_set_error (error, 0, 0, "exec() failed: wget: %s", g_strerror (errno));
|
||||||
_exit (127);
|
_exit (127);
|
||||||
|
|
Loading…
Reference in New Issue