List:Internals« Previous MessageNext Message »
From:lenz Date:August 3 2005 10:26am
Subject:bk commit into 4.1 tree (lenz:1.2375)
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of lenz. When lenz does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet
  1.2375 05/08/03 12:25:56 lenz@stripped +1 -0
  - portability fix for FreeBSD 4.x and HPUX: replaced atoll() with strtoll()

  ndb/tools/config.cpp
    1.3 05/08/03 12:25:52 lenz@stripped +1 -1
    - portability fix for FreeBSD 4.x and HPUX: replaced atoll() with strtoll()

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	lenz
# Host:	metis.lenznet
# Root:	/space/my/mysql-4.1-build

--- 1.2/ndb/tools/config.cpp	2005-07-25 13:47:37 +02:00
+++ 1.3/ndb/tools/config.cpp	2005-08-03 12:25:52 +02:00
@@ -359,7 +359,7 @@
   } 
   else if(iter.get(m_key, &val64) == 0)
   {
-    if(atoll(m_value.c_str()) != val64)
+    if(strtoll(m_value.c_str(), (char **)NULL, 10) != val64)
       return 0;
   }
   else if(iter.get(m_key, &valc) == 0)
Thread
bk commit into 4.1 tree (lenz:1.2375)lenz3 Aug