Do we really want apr_atoi64 to determine the base automagically??
I don't think we do... I think we want to have it emulate atol
which means:

   APR_DECLARE(apr_int64_t) apr_atoi64(const char *buf)
   {
-      return apr_strtoi64(buf, NULL, 0);
+      return apr_strtoi64(buf, NULL, 10);
   }

Comments??
-- 
===========================================================================
   Jim Jagielski   [|]   [EMAIL PROTECTED]   [|]   http://www.jaguNET.com/
      "A society that will trade a little liberty for a little order
             will lose both and deserve neither" - T.Jefferson

Reply via email to