From c84c516b179fcbbcdb36c0c0aa4ffb4ff12f2c35 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 22 Jul 2005 03:46:57 +0000 Subject: [PATCH] r8698: attempt to cope with lack of strtoull() on HPUX --- source/lib/replace/replace.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/source/lib/replace/replace.c b/source/lib/replace/replace.c index 79b452d69c5..20a420084a1 100644 --- a/source/lib/replace/replace.c +++ b/source/lib/replace/replace.c @@ -512,7 +512,15 @@ int get_time_zone(time_t t) #ifdef HAVE_STRTOUQ return strtouq(str, endptr, base); #else -#error "system must support 64 bit integer read from strings" + unsigned long long int v; + if (sscanf(str, "%lli", &v) != 1) { + smb_panic("system does not support %lli in sscanf"); + } + if (endptr) { + /* try to get endptr right - uggh */ + strtoul(str, endptr, base); + } + return v; #endif } #endif