From 5a0177d4474787951c0cae56e285bb075ab405f3 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sat, 16 Jul 2005 21:11:25 +0000 Subject: Accept autoconf HAVE_STRLCPY as alias for HAS_STRLCAT --- src/parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parse.c b/src/parse.c index e7b3378..9644181 100644 --- a/src/parse.c +++ b/src/parse.c @@ -50,7 +50,7 @@ #include #include -#ifdef HAS_STRLCAT +#if defined(HAS_STRLCAT) || defined(HAVE_STRLCAT) # define STRLCAT(dst, src, dstsize) do { \ if (strlcat(dst, src, dstsize) >= (dstsize)) \ return (XpmFileInvalid); } while(0) -- cgit v1.2.1