diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-05-18 10:02:44 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-05-18 10:02:44 +0000 |
commit | 6c50d2ee7d7e4c87a04422613a76de39702a0e89 (patch) | |
tree | c1511acb33c479abe8b6537eb6fe235f0132b698 | |
parent | 9e8615ae1dbb12cbabf6908195ab3126ce964c28 (diff) |
strlcat() is now Curl_strlcat() instead to prevent collisions when used with
other libs
-rw-r--r-- | lib/strequal.c | 2 |
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; |