aboutsummaryrefslogtreecommitdiff
path: root/lib/strequal.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-05-18 10:02:44 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-05-18 10:02:44 +0000
commit6c50d2ee7d7e4c87a04422613a76de39702a0e89 (patch)
treec1511acb33c479abe8b6537eb6fe235f0132b698 /lib/strequal.c
parent9e8615ae1dbb12cbabf6908195ab3126ce964c28 (diff)
strlcat() is now Curl_strlcat() instead to prevent collisions when used with
other libs
Diffstat (limited to 'lib/strequal.c')
-rw-r--r--lib/strequal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strequal.c b/lib/strequal.c
index 38ba23986..e14bc245d 100644
--- a/lib/strequal.c
+++ b/lib/strequal.c
@@ -80,7 +80,7 @@ int curl_strnequal(const char *first, const char *second, size_t max)
*
*
*/
-size_t strlcat(char *dst, const char *src, size_t siz)
+size_t Curl_strlcat(char *dst, const char *src, size_t siz)
{
char *d = dst;
const char *s = src;