From: Daniel Stenberg Date: Tue, 6 Feb 2001 09:12:39 +0000 (+0000) Subject: silly me, corrected the strlcat() to compile X-Git-Tag: curl-7_6_1-pre3~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09f6fc22eda36fa0d6ec9205cfa27ba7b204996b;p=thirdparty%2Fcurl.git silly me, corrected the strlcat() to compile --- diff --git a/lib/strequal.c b/lib/strequal.c index 42aea7cd05..6e198f1b5c 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;