added "-v" to the wget command-line options. Fixes bug #322977.

2005-12-02  Sven Neumann  <sven@gimp.org>

	* plug-ins/uri/uri-backend-wget.c (uri_backend_load_image): added
	"-v" to the wget command-line options. Fixes bug #322977.
This commit is contained in:
Sven Neumann 2005-12-02 10:44:15 +00:00 committed by Sven Neumann
parent 408c7cf24f
commit 24b22c37bd
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-12-02 Sven Neumann <sven@gimp.org>
* plug-ins/uri/uri-backend-wget.c (uri_backend_load_image): added
"-v" to the wget command-line options. Fixes bug #322977.
2005-11-30 Manish Singh <yosh@gimp.org> 2005-11-30 Manish Singh <yosh@gimp.org>
* plug-ins/uri/uri-backend-wget.c (uri_backend_load_image): timeout * plug-ins/uri/uri-backend-wget.c (uri_backend_load_image): timeout

View File

@ -105,7 +105,8 @@ uri_backend_load_image (const gchar *uri,
g_snprintf (timeout_str, sizeof (timeout_str), "%d", TIMEOUT); g_snprintf (timeout_str, sizeof (timeout_str), "%d", TIMEOUT);
execlp ("wget", "wget", "-e", "server-response=off", "-T", timeout_str, execlp ("wget",
"wget", "-v", "-e", "server-response=off", "-T", timeout_str,
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);