configure: fix a typo that broke strlcat test. Found by Min Sik Kim reported in issue 2.

This commit is contained in:
Juan RP 2010-12-10 16:25:28 +01:00
parent 60c37406c1
commit 8013448097

2
configure vendored
View File

@ -303,7 +303,7 @@ printf "Checking for strlcat() ... "
cat <<EOF > _strlcat.c
#include <string.h>
int main(void) {
const char src[] = "foo"
const char src[] = "foo";
char dst[10];
strlcat(dst, src, sizeof(dst));
return 0;