diff --git a/common/util.h b/common/util.h index cf4500f44..af3c4d844 100644 --- a/common/util.h +++ b/common/util.h @@ -237,7 +237,7 @@ static inline int a_strcasecmp(const char *a, const char *b) } #define A_STREQ_CASE(a, b) (((a) == (b)) || a_strcasecmp(a, b) == 0) -#define A_STRNEQ_CASE(a, b) (!A_STRCASEEQ(a, b)) +#define A_STRNEQ_CASE(a, b) (!A_STREQ_CASE(a, b)) /** \brief \c NULL resistant strncmp. * \param[in] a the first string.