--- a/match/nss_match_priv.h +++ b/match/nss_match_priv.h @@ -29,19 +29,19 @@ /* * Statically compile messages at different levels */ -#if (NSS_match_DEBUG_LEVEL < 2) +#if (NSS_MATCH_DEBUG_LEVEL < 2) #define nss_match_warn(s, ...) #else #define nss_match_warn(s, ...) pr_warn("%s[%d]:" s, __FUNCTION__, __LINE__, ##__VA_ARGS__) #endif -#if (NSS_match_DEBUG_LEVEL < 3) +#if (NSS_MATCH_DEBUG_LEVEL < 3) #define nss_match_info(s, ...) #else #define nss_match_info(s, ...) pr_notice("%s[%d]:" s, __FUNCTION__, __LINE__, ##__VA_ARGS__) #endif -#if (NSS_match_DEBUG_LEVEL < 4) +#if (NSS_MATCH_DEBUG_LEVEL < 4) #define nss_match_trace(s, ...) #else #define nss_match_trace(s, ...) pr_info("%s[%d]:" s, __FUNCTION__, __LINE__, ##__VA_ARGS__)