1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/graphics/gimp-devel/files/patch-ab

14 lines
486 B
Plaintext
Raw Normal View History

--- plug-ins/common/url.c.orig Tue Feb 1 16:09:01 2000
+++ plug-ins/common/url.c Sat Feb 19 13:51:36 2000
@@ -158,8 +158,8 @@
}
else if (pid == 0)
{
- execlp ("wget", "wget", filename, "-O", tmpname, NULL);
- g_message ("url: exec failed: wget: %s\n", g_strerror(errno));
+ execlp ("fetch", "fetch", filename, "-p -o", tmpname, NULL);
+ g_message ("url: exec failed: fetch: %s\n", g_strerror(errno));
g_free (tmpname);
_exit(127);
}