From: Wayne Davison Date: Tue, 30 Jun 2020 15:27:20 +0000 (-0700) Subject: Avoid strdup redefinition warning. X-Git-Tag: v3.2.2pre3~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a413c972246250a8fc8302548489c031de3b0c1;p=thirdparty%2Frsync.git Avoid strdup redefinition warning. --- diff --git a/rsync.h b/rsync.h index d54eb399..2668d670 100644 --- a/rsync.h +++ b/rsync.h @@ -1277,6 +1277,7 @@ extern char *do_malloc; #define new_array0(type, num) ((type*)my_alloc(NULL, (num), sizeof (type), __FILE__, __LINE__)) #define realloc_array(ptr, type, num) ((type*)my_alloc((ptr), (num), sizeof (type), __FILE__, __LINE__)) +#undef strdup #define strdup(s) my_strdup(s, __FILE__, __LINE__) /* use magic gcc attributes to catch format errors */