diff options
Diffstat (limited to 'ACE/ace/Ping_Socket.cpp')
-rw-r--r-- | ACE/ace/Ping_Socket.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Ping_Socket.cpp b/ACE/ace/Ping_Socket.cpp index c8701529f7e..573a78451f1 100644 --- a/ACE/ace/Ping_Socket.cpp +++ b/ACE/ace/Ping_Socket.cpp @@ -249,7 +249,7 @@ ACE_Ping_Socket::process_incoming_dgram (char * ptr, ssize_t len) ACE_TEXT ("(%P|%t) ACE_Ping_Socket::process_incoming_dgram") ACE_TEXT (" - ICMP_ECHOREPLY received.\n"))); - if (icmp->icmp_id != (ACE_OS::getpid () & 0xFFFF)) + if (icmp->icmp_id != (ACE_OS::getpid () & 0xFFFF)) { ACE_ERROR_RETURN ((LM_ERROR, @@ -257,7 +257,7 @@ ACE_Ping_Socket::process_incoming_dgram (char * ptr, ssize_t len) ACE_TEXT ("process_incoming_dgram ") ACE_TEXT ("- The ICMP header received is a reply to request ") ACE_TEXT ("of another process (%d; expected %d).\n"), - icmp->icmp_id, ACE_OS::getpid()), + icmp->icmp_id, ACE_OS::getpid()), -1); } if (icmplen < 16) |