From 9b549a463a8e626f01ff9c79bc0f53cddb446375 Mon Sep 17 00:00:00 2001 From: Stephen Roderick Date: Tue, 8 Mar 2011 15:46:53 -0500 Subject: [PATCH] bin: Fix boost v1.45 string conversion handling bug --- bin/deployer-funcs.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bin/deployer-funcs.cpp b/bin/deployer-funcs.cpp index 319ad6c..f56ffad 100644 --- a/bin/deployer-funcs.cpp +++ b/bin/deployer-funcs.cpp @@ -154,7 +154,7 @@ int deployerParseCmdLine(int argc, } // verify that is a valid logging level - boost::algorithm::to_lower(logLevel); // always lower case + logLevel = boost::algorithm::to_lower_copy(logLevel); // always lower case if (vm.count("log-level")) { if (0 != logMap.count(logLevel)) -- 1.7.0.2