mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-17 10:26:15 +00:00
Fix bracket error for LogMask
Submitted by: Ruslan Belkin <rus@home2.UA.net>
This commit is contained in:
parent
34688a8bd5
commit
ff17906bc9
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=8226
@ -109,7 +109,7 @@ vsyslog(pri, fmt, ap)
|
||||
}
|
||||
|
||||
/* Check priority against setlogmask values. */
|
||||
if (!LOG_MASK(LOG_PRI(pri)) & LogMask)
|
||||
if (!(LOG_MASK(LOG_PRI(pri)) & LogMask))
|
||||
return;
|
||||
|
||||
saved_errno = errno;
|
||||
|
Loading…
Reference in New Issue
Block a user