MAILER -> _PATH_SENDMAIL

This commit is contained in:
Todd C. Miller
1998-09-21 23:52:41 +00:00
parent d3d704681c
commit 8450ad0802

View File

@@ -440,7 +440,7 @@ void log_error(code)
#ifdef MAILER #ifdef _PATH_SENDMAIL
/********************************************************************** /**********************************************************************
* *
* send_mail() * send_mail()
@@ -453,7 +453,7 @@ static char *mail_argv[] = { "sendmail", "-t", (char *) NULL };
static void send_mail() static void send_mail()
{ {
char *mailer = MAILER; char *mailer = _PATH_SENDMAIL;
char *subject = MAILSUBJECT; char *subject = MAILSUBJECT;
int fd[2]; int fd[2];
char *p; char *p;
@@ -534,7 +534,7 @@ static void send_mail()
/* no mailer defined */ /* no mailer defined */
return; return;
} }
#endif /* MAILER */ #endif /* _PATH_SENDMAIL */