From 6aea170a2e9b30ebc2b920b685cbadca07b3b55b Mon Sep 17 00:00:00 2001 From: Fredrik Mellbin Date: Mon, 15 Sep 2008 18:50:07 +0000 Subject: [PATCH] FFmpegSource2: more portability Originally committed to SVN as r2362. --- FFmpegSource2/MatroskaParser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FFmpegSource2/MatroskaParser.c b/FFmpegSource2/MatroskaParser.c index d6ff7b320..fd84a2ef8 100644 --- a/FFmpegSource2/MatroskaParser.c +++ b/FFmpegSource2/MatroskaParser.c @@ -96,7 +96,7 @@ static char *mystrdup(struct InputStream *is,const char *src) { return dst; } -#ifdef _WIN32 +#ifndef HAVE_STRLCPY static void strlcpy(char *dst,const char *src,unsigned size) { unsigned i;