Browse Source

ZOOKEEPER-347. zkfuse uses non-standard String. (patrick hunt via mahadev)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/zookeeper/trunk@763435 13f79535-47bb-0310-9956-ffa450edef68
Mahadev Konar 16 years ago
parent
commit
945c181540
2 changed files with 3 additions and 1 deletions
  1. 2 0
      CHANGES.txt
  2. 1 1
      src/contrib/zkfuse/src/zkfuse.cc

+ 2 - 0
CHANGES.txt

@@ -43,6 +43,8 @@ BUGFIXES:
 
   ZOOKEEPER-370. Fix critical problems reported by findbugs. (flavio via mahadev)
 
+  ZOOKEEPER-347. zkfuse uses non-standard String. (patrick hunt via mahadev)
+
 IMPROVEMENTS:
   ZOOKEEPER-308. improve the atomic broadcast performance 3x.
   (breed via mahadev)

+ 1 - 1
src/contrib/zkfuse/src/zkfuse.cc

@@ -4279,7 +4279,7 @@ main(int argc, char *argv[])
     /**
      * Initialize log4cxx 
      */
-    const String file("log4cxx.properties");
+    const std::string file("log4cxx.properties");
     PropertyConfigurator::configureAndWatch( file, 5000 );
     LOG_INFO(LOG, "Starting zkfuse");