From 035dd6447a06409c2df5ed559218f52479621abd Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 18 Aug 2015 20:57:27 +0200 Subject: [PATCH] replace: Fix bug 11455 Don't call rep_strtoull recursively Signed-off-by: Volker Lendecke Bug: https://bugzilla.samba.org/show_bug.cgi?id=11455 --- lib/replace/replace.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/replace/replace.c b/lib/replace/replace.c index 0806ce3..798990a 100644 --- a/lib/replace/replace.c +++ b/lib/replace/replace.c @@ -538,6 +538,7 @@ long long int rep_strtoll(const char *str, char **endptr, int base) } #else #ifdef HAVE_BSD_STRTOLL +#undef strtoll long long int rep_strtoll(const char *str, char **endptr, int base) { long long int nb = strtoll(str, endptr, base); -- 2.4.6