Add cases for ENOBUFS and ENETDOWN. We need to make sure that we

catch all transient errors. This fixes situations where transient
error conditions such as network interfaces losing carrier signals
or the system running out of mbufs would result in the permanent
removal of forwarding syslog messages.

MFC after:	1 week
This commit is contained in:
Christian S.J. Peron 2005-05-19 21:09:44 +00:00
parent 419c028b36
commit 8e56d2ee05
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=146414

View File

@ -1189,6 +1189,8 @@ fprintlog(struct filed *f, int flags, const char *msg)
logerror("sendto");
errno = e;
switch (errno) {
case ENOBUFS:
case ENETDOWN:
case EHOSTUNREACH:
case EHOSTDOWN:
break;