diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-02-06 09:12:39 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-02-06 09:12:39 +0000 |
commit | 09f6fc22eda36fa0d6ec9205cfa27ba7b204996b (patch) | |
tree | 0738bbbb9996759ba4ee7dbeee123988e68e6b68 /lib/strequal.c | |
parent | 833ce37cb95646bfc02dbf1a87ac3fd5d3937de5 (diff) | |
download | curl-09f6fc22eda36fa0d6ec9205cfa27ba7b204996b.tar.gz |
silly me, corrected the strlcat() to compile
Diffstat (limited to 'lib/strequal.c')
-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 42aea7cd0..6e198f1b5 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 size) +size_t strlcat(char *dst, const char *src, size_t siz) { char *d = dst; const char *s = src; |