Mailing Lists
|
|
cURL Mailing List Monthly Index Single Mail
curl-tracker Archives
[curl:bugs] #1192 libcurl should use the strlcat from <string.h>
From: Jeremy Huddleston <jeremyhu_at_users.sf.net>
Date: Thu, 14 Feb 2013 17:35:47 +0000
Thanks. FWIW, I reviewed the src changes, and they look good.
--- ** [bugs:#1192] libcurl should use the strlcat from <string.h>** **Status:** closed-fixed **Created:** Mon Feb 11, 2013 12:39 AM UTC by Jeremy Huddleston **Last Updated:** Thu Feb 14, 2013 09:49 AM UTC **Owner:** Daniel Stenberg --- lib/strequal.h.orig 2013-02-08 09:04:39.000000000 -0800 +++ lib/strequal.h 2013-02-08 09:05:41.000000000 -0800 @@ -35,9 +35,10 @@ /* case insensitive strstr() */ char *Curl_strcasestr(const char *haystack, const char *needle); -#ifndef HAVE_STRLCAT +#ifdef HAVE_STRLCAT +#include <string.h> +#else #define strlcat(x,y,z) Curl_strlcat(x,y,z) #endif -size_t strlcat(char *dst, const char *src, size_t siz); #endif --- Sent from sourceforge.net because you indicated interest in <https://sourceforge.net/p/curl/bugs/1192/> To unsubscribe from further messages, please visit <https://sourceforge.net/auth/prefs/>Received on 2013-02-14 These mail archives are generated by hypermail. |
Page updated January 05, 2012.
web site info