From 05f3422a9b24d73a1ee728c9a68a6ce57cbc2dc9 Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Sat, 12 Mar 2016 17:10:03 -0600 Subject: [PATCH] fix check for strlcat fixes #175 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e4cf7ec..710d8a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -96,7 +96,7 @@ if(HAVE_STRLCAT) add_definitions(-DHAVE_STRLCAT) endif() -check_function_exists(strlcat HAVE_STRLCPY) +check_function_exists(strlcpy HAVE_STRLCPY) if(HAVE_STRLCPY) add_definitions(-DHAVE_STRLCPY) endif()