mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
a146f9f784
PR: ports/16837, ports/16913 Reviewed by: maintainers
14 lines
486 B
Plaintext
14 lines
486 B
Plaintext
--- 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);
|
|
}
|