diff options
author | Cy Schubert <cy@FreeBSD.org> | 2020-11-07 19:17:37 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2020-11-07 19:17:37 +0000 |
commit | ce558a3f33074da1655a16c1cd108321eca40391 (patch) | |
tree | 9b6bd7f2b79d65f05d0fae6cf9c56a75ca73c7bb | |
parent | 1024ef27fe66cd6beb421bcd9985dde0dab0048e (diff) |
Fix build post-r367455.
MFC after: 2 weeks
X-MFC with: r367455
Notes
Notes:
svn path=/head/; revision=367459
-rw-r--r-- | usr.sbin/syslogd/syslogd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/syslogd/syslogd.c b/usr.sbin/syslogd/syslogd.c index bc797f44eb6b..50e68eede79c 100644 --- a/usr.sbin/syslogd/syslogd.c +++ b/usr.sbin/syslogd/syslogd.c @@ -1873,7 +1873,7 @@ fprintlog_write(struct filed *f, struct iovlist *il, int flags) continue; if (sl->sl_sa == NULL || sl->sl_family == AF_UNSPEC || - sl->sl_family == AF_LOCAL) { + sl->sl_family == AF_LOCAL) continue; lsent = sendmsg(sl->sl_socket, &msghdr, 0); if (lsent == (ssize_t)il->totalsize) |