Browse Source

ZOOKEEPER-184. tests: An explicit include derective is needed for the usage of memcpy(), memset(), strlen(), strdup() and free() functions --- also addressed some missing jiras from CHANGES.txt

git-svn-id: https://svn.apache.org/repos/asf/hadoop/zookeeper/trunk@704667 13f79535-47bb-0310-9956-ffa450edef68
Patrick D. Hunt 16 years ago
parent
commit
f15c156be0
3 changed files with 21 additions and 0 deletions
  1. 19 0
      CHANGES.txt
  2. 1 0
      src/c/tests/LibCMocks.h
  3. 1 0
      src/c/tests/TestHashtable.cc

+ 19 - 0
CHANGES.txt

@@ -16,10 +16,29 @@ Non-backward compatible changes:
   ZOOKEEPER-8. Stat enchaned to include num of children and size
   (phunt)
 
+  ZOOKEEPER-6. List of problem identifiers in zookeeper.h
+  (phunt)
+
+  ZOOKEEPER-7. Use enums rather than ints for types and state
+  (Jakob Homan via mahadev)
+
+  ZOOKEEPER-27. Unique DB identifiers for servers and clients
+  (mahadev)
+
+  ZOOKEEPER-32. CRCs for ZooKeeper data
+  (mahadev)
+
+  ZOOKEEPER-33. Better ACL management
+  (mahadev)
+
 Backward compatibile changes:
 
   BUGFIXES: 
 
+  ZOOKEEPER-184. tests: An explicit include derective is needed for the usage
+  of memcpy(), memset(), strlen(), strdup() and free() functions
+  (Maxim P. Dementiev via phunt)
+
   ZOOKEEPER-183. Array subscript is above array bounds in od_completion(),
   src/cli.c. (Maxim P. Dementiev via phunt)
 

+ 1 - 0
src/c/tests/LibCMocks.h

@@ -24,6 +24,7 @@
 #include <deque>
 
 #include <errno.h>
+#include <string.h>
 
 #include "MocksBase.h"
 #include "LibCSymTable.h"

+ 1 - 0
src/c/tests/TestHashtable.cc

@@ -19,6 +19,7 @@
 #include <cppunit/extensions/HelperMacros.h>
 #include "CppAssertHelper.h"
 
+#include <stdlib.h>
 
 #include "CollectionUtil.h"
 using namespace Util;