can now have MAILER undefined

This commit is contained in:
Todd C. Miller
1994-07-07 18:44:21 +00:00
parent 7083436ee1
commit f3cd23eee0

View File

@@ -342,6 +342,7 @@ void log_error(code)
#ifdef MAILER
/********************************************************************** /**********************************************************************
* *
* send_mail() * send_mail()
@@ -433,6 +434,13 @@ static void send_mail()
exit(0); exit(0);
} }
} }
#else
static void send_mail()
{
/* no mailer defined */
return;
}
#endif /* MAILER */