From c68257729de8a2165e161b187cf866897f71c502 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 10 Jul 2012 19:11:03 +0200 Subject: Fix LOG_MAKEPRI to agree with BSD --- misc/sys/syslog.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'misc') diff --git a/misc/sys/syslog.h b/misc/sys/syslog.h index 77123ab..41331a8 100644 --- a/misc/sys/syslog.h +++ b/misc/sys/syslog.h @@ -60,12 +60,12 @@ #define LOG_PRIMASK 0x07 /* mask to extract priority part (internal) */ /* extract priority */ #define LOG_PRI(p) ((p) & LOG_PRIMASK) -#define LOG_MAKEPRI(fac, pri) (((fac) << 3) | (pri)) +#define LOG_MAKEPRI(fac, pri) ((fac) | (pri)) #ifdef SYSLOG_NAMES #define INTERNAL_NOPRI 0x10 /* the "no priority" priority */ /* mark "facility" */ -#define INTERNAL_MARK LOG_MAKEPRI(LOG_NFACILITIES, 0) +#define INTERNAL_MARK LOG_MAKEPRI(LOG_NFACILITIES << 3, 0) typedef struct _code { char *c_name; int c_val; -- cgit v1.1