@@ -, +, @@ --- src/meta.cc | 2 +- src/meta.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/src/meta.cc +++ a/src/meta.cc @@ -831,7 +831,7 @@ bool scaseequals(string_view a, string_view b) return true; } -#if !defined(HAVE_STRLCPY) || !HAVE_STRLCPY +#if !defined(HAVE_STRLCPY) || !(HAVE_STRLCPY + 0) size_t strlcpy(char *tgt, const char *src, size_t tgtSize) { auto p = src; --- a/src/meta.h +++ a/src/meta.h @@ -323,7 +323,7 @@ class NoCaseStringMap : public std::map static constexpr string_view svRN = szRN; static constexpr string_view svLF = "\n"; -#if !defined(HAVE_STRLCPY) || !HAVE_STRLCPY +#if !defined(HAVE_STRLCPY) || !(HAVE_STRLCPY + 0) size_t strlcpy(char *tgt, const char *src, size_t tgtSize); #endif }