correct some cut&paste errors pointed out by Jaq

This commit is contained in:
Bill Currie 2002-04-17 06:33:48 +00:00
parent fafb014bbe
commit e677b4acf3
1 changed files with 2 additions and 2 deletions

View File

@ -236,8 +236,8 @@ AC_TRY_COMPILE(
AC_MSG_CHECKING(for strcasestr in string.h)
AC_TRY_COMPILE(
[#include "string.h"],
[int (*foo)() = strnlen;],
AC_DEFINE(HAVE_STRCASESTR_PROTO, 1, [Define this if fnmatch is prototyped in string.h])
[int (*foo)() = strcasestr;],
AC_DEFINE(HAVE_STRCASESTR_PROTO, 1, [Define this if strcasestr is prototyped in string.h])
AC_MSG_RESULT(yes),
AC_MSG_RESULT(no)
)