summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornguyenq <nguyenq@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2013-01-22 23:01:07 +0000
committernguyenq <nguyenq@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2013-01-22 23:01:07 +0000
commitd8541e06116f2429cbe41ab414e087c632538808 (patch)
treebecdf8ab7077e6c421b2e30436ce8fb378f179d7
parentf4234de5d94b6bb06d06ca6715fd5274def726e8 (diff)
downloadATCD-d8541e06116f2429cbe41ab414e087c632538808.tar.gz
Fix bug #479 where the starting command line argument string was truncated to 1024 bytes even if it is much longer.
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp b/TAO/orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp
index 78dd8461d30..ad7f91357c7 100644
--- a/TAO/orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp
+++ b/TAO/orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp
@@ -293,7 +293,7 @@ ImR_Activator_i::start_server(const char* name,
if (debug_ > 1)
ACE_DEBUG((LM_DEBUG,
"\tcommand line : len=%d <%s>\n\tdirectory : <%C>\n",
- cmdline_buf_len, cmdline_tstr.c_str(), dir));
+ cmdline_buf_len, cmdline_tstr.c_str(), dir) );
ACE_Process_Options proc_opts (
1,