fix check for strlcat

fixes #175
This commit is contained in:
Brent Cook 2016-03-12 17:10:03 -06:00
parent be3b129221
commit 05f3422a9b

View File

@ -96,7 +96,7 @@ if(HAVE_STRLCAT)
add_definitions(-DHAVE_STRLCAT) add_definitions(-DHAVE_STRLCAT)
endif() endif()
check_function_exists(strlcat HAVE_STRLCPY) check_function_exists(strlcpy HAVE_STRLCPY)
if(HAVE_STRLCPY) if(HAVE_STRLCPY)
add_definitions(-DHAVE_STRLCPY) add_definitions(-DHAVE_STRLCPY)
endif() endif()