From 8013448097d976e93f02d3fd4398c851381cd032 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Fri, 10 Dec 2010 16:25:28 +0100 Subject: [PATCH] configure: fix a typo that broke strlcat test. Found by Min Sik Kim reported in issue 2. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index eb731d8f..b0c06615 100755 --- a/configure +++ b/configure @@ -303,7 +303,7 @@ printf "Checking for strlcat() ... " cat < _strlcat.c #include int main(void) { - const char src[] = "foo" + const char src[] = "foo"; char dst[10]; strlcat(dst, src, sizeof(dst)); return 0;