2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 06:15:37 +00:00

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()
@@ -433,6 +434,13 @@ static void send_mail()
exit(0);
}
}
#else
static void send_mail()
{
/* no mailer defined */
return;
}
#endif /* MAILER */