configure: fix a typo that broke strlcat test. Found by Min Sik Kim reported in issue 2.
This commit is contained in:
parent
60c37406c1
commit
8013448097
2
configure
vendored
2
configure
vendored
@ -303,7 +303,7 @@ printf "Checking for strlcat() ... "
|
|||||||
cat <<EOF > _strlcat.c
|
cat <<EOF > _strlcat.c
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
int main(void) {
|
int main(void) {
|
||||||
const char src[] = "foo"
|
const char src[] = "foo";
|
||||||
char dst[10];
|
char dst[10];
|
||||||
strlcat(dst, src, sizeof(dst));
|
strlcat(dst, src, sizeof(dst));
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user