You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by yl...@apache.org on 2019/03/22 15:16:53 UTC

svn commit: r1856063 - /apr/apr/trunk/configure.in

Author: ylavic
Date: Fri Mar 22 15:16:53 2019
New Revision: 1856063

URL: http://svn.apache.org/viewvc?rev=1856063&view=rev
Log:
The string conversion to apr_off_t is strtoll when it's a long long.

Modified:
    apr/apr/trunk/configure.in

Modified: apr/apr/trunk/configure.in
URL: http://svn.apache.org/viewvc/apr/apr/trunk/configure.in?rev=1856063&r1=1856062&r2=1856063&view=diff
==============================================================================
--- apr/apr/trunk/configure.in (original)
+++ apr/apr/trunk/configure.in Fri Mar 22 15:16:53 2019
@@ -1888,7 +1888,7 @@ elif test "$ac_cv_type_off_t" = "yes"; t
     ], [
     APR_CHECK_TYPES_FMT_COMPATIBLE(off_t, long long, lld, [
         off_t_fmt="#define APR_OFF_T_FMT \"lld\""
-        off_t_strfn='apr_strtoi64'
+        off_t_strfn='strtoll'
     ], [
     APR_CHECK_TYPES_FMT_COMPATIBLE(off_t, $int64_value, I64d, [
         off_t_fmt="#define APR_OFF_T_FMT APR_INT64_T_FMT"