mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-27 10:03:20 +00:00
030a0aaf30
This was probably a decade old oversight, but mail has spawned as "sendmail" but set with first argument as "send-mail", requiring mail wrapper to know both sendmail and send-mail. The path and zero argument should match, so let's do that here. Taken from: DragonFly
12 lines
248 B
C
12 lines
248 B
C
--- names.c.intermediate 2015-03-09 09:59:41 UTC
|
|
+++ names.c
|
|
@@ -502,7 +502,7 @@ unpack(np)
|
|
extra++;
|
|
top = (char **) salloc((t + extra) * sizeof *top);
|
|
ap = top;
|
|
- *ap++ = "send-mail";
|
|
+ *ap++ = "sendmail";
|
|
#if MAILX
|
|
*ap++ = "-t";
|
|
#else
|