summaryrefslogtreecommitdiff
path: root/TAO/utils
diff options
context:
space:
mode:
authorPhil Mesnier <mesnierp@ociweb.com>2016-03-03 17:05:17 -0600
committerPhil Mesnier <mesnierp@ociweb.com>2016-03-04 10:15:00 -0600
commit0d0f18df98b2bd64b9ec645cf5326364275a4107 (patch)
tree106291859306623207b8abd60f9a6151b02566b4 /TAO/utils
parenteb3d1c4d67e28d154d2b5f5f6699df1f47731dc2 (diff)
downloadATCD-0d0f18df98b2bd64b9ec645cf5326364275a4107.tar.gz
More OCI supplied updates
Diffstat (limited to 'TAO/utils')
-rw-r--r--TAO/utils/logWalker/GIOP_Buffer.cpp1
-rw-r--r--TAO/utils/logWalker/Invocation.cpp3
-rw-r--r--TAO/utils/logWalker/PeerProcess.cpp2
3 files changed, 4 insertions, 2 deletions
diff --git a/TAO/utils/logWalker/GIOP_Buffer.cpp b/TAO/utils/logWalker/GIOP_Buffer.cpp
index a0833ca83ed..051f9474c2a 100644
--- a/TAO/utils/logWalker/GIOP_Buffer.cpp
+++ b/TAO/utils/logWalker/GIOP_Buffer.cpp
@@ -1,5 +1,6 @@
#include "GIOP_Buffer.h"
#include "ace/OS_NS_string.h"
+#include "ace/Log_Msg.h"
static const char *size_leadin_1_5 = "GIOP v1."; //"x msg, ";
static size_t leadin_len_1_5 = 15;
diff --git a/TAO/utils/logWalker/Invocation.cpp b/TAO/utils/logWalker/Invocation.cpp
index fffac1cc52d..07d15015809 100644
--- a/TAO/utils/logWalker/Invocation.cpp
+++ b/TAO/utils/logWalker/Invocation.cpp
@@ -461,7 +461,8 @@ Invocation::dump_special_details (ostream &strm, size_t indent, const char *opna
{
opid = 2;
}
- else if (ACE_OS::strcmp (opname, "resolve_str") == 0)
+ else if (ACE_OS::strcmp (opname, "resolve_str") == 0 ||
+ ACE_OS::strcmp (opname, "get_object_group_ref_from_name") == 0)
{
opid = 3;
ACE_InputCDR &giop_cdr = this->req_octets_->payload();
diff --git a/TAO/utils/logWalker/PeerProcess.cpp b/TAO/utils/logWalker/PeerProcess.cpp
index 7db2493188a..d920ef7ad24 100644
--- a/TAO/utils/logWalker/PeerProcess.cpp
+++ b/TAO/utils/logWalker/PeerProcess.cpp
@@ -255,7 +255,7 @@ PeerProcess::id (void) const
void
PeerProcess::split_filename (char *buffer, size_t len) const
{
- snprintf (buffer, len, "%s.txt", this->ident_);
+ ACE_OS::snprintf (buffer, len, "%s.txt", this->ident_);
}
PeerObject *