From: 0809216 <0809216@1ed66053-1c2d-0410-8867-f7571e6e31d3> Date: Tue, 7 Sep 2010 08:00:43 +0000 (+0000) Subject: typo fix X-Git-Tag: v3.0.1~6^2~115 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=440edad289931b514e15b2e30ec42055f8aee534;p=ultramonkey-l7%2Fultramonkey-l7-v3.git typo fix git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10281 1ed66053-1c2d-0410-8867-f7571e6e31d3 --- diff --git a/l7vsd/module/protocol/ip_session_data_processor.cpp b/l7vsd/module/protocol/ip_session_data_processor.cpp index 9199cc10..1a909a81 100644 --- a/l7vsd/module/protocol/ip_session_data_processor.cpp +++ b/l7vsd/module/protocol/ip_session_data_processor.cpp @@ -132,7 +132,7 @@ int ip_session_data_processor::get_endpoint_from_session_data( /*-------- DEBUG LOG --------*/ if (unlikely(LOG_LV_DEBUG == getloglevel())) { boost::format formatter("out_function : int ip_session_data_processor::" - "get_endpoint_from_ip_data(int ip_hash, " + "get_endpoint_from_session_data(int ip_hash, " "boost::asio::ip::tcp::endpoint& endpoint) : return_value = 1."); putLogDebug(600194, formatter.str(), __FILE__, __LINE__); } @@ -160,9 +160,9 @@ int ip_session_data_processor::get_endpoint_from_session_data( } } } catch (const std::exception &e) { - std::cerr << "ip_session_data_processor::get_endpoint_from_ip_data() : exception: error = " << e.what() << "." << std::endl; + std::cerr << "ip_session_data_processor::get_endpoint_from_session_data() : exception: error = " << e.what() << "." << std::endl; boost::format formatter("function : int ip_session_data_processor::" - "get_endpoint_from_ip_data() : exception : error = %s."); + "get_endpoint_from_session_data() : exception : error = %s."); formatter % e.what(); putLogError(600104, formatter.str(), __FILE__, __LINE__); @@ -172,7 +172,7 @@ int ip_session_data_processor::get_endpoint_from_session_data( /*-------- DEBUG LOG --------*/ if (unlikely(LOG_LV_DEBUG == getloglevel())) { boost::format formatter("out_function : int ip_session_data_processor::" - "get_endpoint_from_ip_data(int ip_hash, " + "get_endpoint_from_session_data(int ip_hash, " "boost::asio::ip::tcp::endpoint& endpoint) : return_value = %d."); formatter % ret; putLogDebug(600195, formatter.str(), __FILE__, __LINE__);