summaryrefslogtreecommitdiff
path: root/ACE/ace/ICMP_Socket.cpp
diff options
context:
space:
mode:
authorhuangh <huangh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2013-04-11 15:50:32 +0000
committerhuangh <huangh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2013-04-11 15:50:32 +0000
commit537046fb5253868dbf1cb8573b00f1f3d5a9ded4 (patch)
tree8883300dd00120bdad85bf01b021d2cf11266119 /ACE/ace/ICMP_Socket.cpp
parenta0494dd88fb991669c545b629a4d052b098c36d2 (diff)
downloadATCD-537046fb5253868dbf1cb8573b00f1f3d5a9ded4.tar.gz
Thu Apr 11 15:45:41 UTC 2013 Huang-Ming Huang <huangh@ociweb.com>
Diffstat (limited to 'ACE/ace/ICMP_Socket.cpp')
-rw-r--r--ACE/ace/ICMP_Socket.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/ICMP_Socket.cpp b/ACE/ace/ICMP_Socket.cpp
index eff3d456c8e..1187f4f0a81 100644
--- a/ACE/ace/ICMP_Socket.cpp
+++ b/ACE/ace/ICMP_Socket.cpp
@@ -5,7 +5,7 @@
#if defined (ACE_HAS_ICMP_SUPPORT) && (ACE_HAS_ICMP_SUPPORT == 1)
#include "ace/ACE.h"
-#include "ace/Log_Msg.h"
+#include "ace/Log_Category.h"
#include "ace/OS_NS_netdb.h"
#include "ace/OS_NS_sys_socket.h"
@@ -89,7 +89,7 @@ ACE_ICMP_Socket::open (ACE_Addr const & local,
if (! (proto = ACE_OS::getprotobyname ("icmp")))
{
- ACE_ERROR_RETURN
+ ACELIB_ERROR_RETURN
((LM_ERROR,
ACE_TEXT ("(%P|%t) ACE_ICMP_Socket::open: %p; %s\n"),
ACE_TEXT ("getprotobyname"),
@@ -101,7 +101,7 @@ ACE_ICMP_Socket::open (ACE_Addr const & local,
if (proto_number != IPPROTO_ICMP || proto_number != protocol)
{
- ACE_ERROR_RETURN ((LM_ERROR,
+ ACELIB_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("(%P|%t) ACE::ICMP_Socket::open - ")
ACE_TEXT ("only IPPROTO_ICMP protocol is ")
ACE_TEXT ("currently supported.\n")),