From d0cd08bfb2e577a7cd2cce96f6a16f47c8636dc7 Mon Sep 17 00:00:00 2001 From: Aaron Date: Mon, 25 Jan 2010 12:11:21 -0800 Subject: [PATCH] SERVER-541 disable preallocation for tools --- tools/tool.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/tool.cpp b/tools/tool.cpp index 3a7176112e9..b312d917e90 100644 --- a/tools/tool.cpp +++ b/tools/tool.cpp @@ -53,6 +53,8 @@ void mongo::Tool::printHelp(ostream &out) { } int mongo::Tool::main( int argc , char ** argv ){ + cmdLine.prealloc = false; + boost::filesystem::path::default_name_check( boost::filesystem::no_check ); _name = argv[0];