summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2022-07-18 16:27:20 +0200
committerAdam Mitz <mitza@objectcomputing.com>2022-10-03 12:49:28 -0500
commit614cfc0d1dbee554513ea345595f445e5b9ad7c1 (patch)
tree0b53ddb760c219e234fb7c32fff39622eddefb6f /TAO
parentf7612da13ee5cc1fec02cf237d42fa9fc7ea1a5b (diff)
downloadATCD-614cfc0d1dbee554513ea345595f445e5b9ad7c1.tar.gz
Merge pull request #1887 from jwillemsen/jwi-codesetregistry
Minor change for codeset registry generation and removed old Id tags (cherry picked from commit bd92596bbc63635a2ed2131322e6c659a5420586)
Diffstat (limited to 'TAO')
-rw-r--r--TAO/orbsvcs/orbsvcs/Scheduler_Factory.cpp1
-rw-r--r--TAO/utils/catior/Catior_i.cpp4
2 files changed, 2 insertions, 3 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Scheduler_Factory.cpp b/TAO/orbsvcs/orbsvcs/Scheduler_Factory.cpp
index 1190037fc93..95e2648cc07 100644
--- a/TAO/orbsvcs/orbsvcs/Scheduler_Factory.cpp
+++ b/TAO/orbsvcs/orbsvcs/Scheduler_Factory.cpp
@@ -235,7 +235,6 @@ ACE_Scheduler_Factory::server (void)
}
static char header[] =
-"// $Id $\n\n"
"// This file was automatically generated by the Scheduler_Factory.\n"
"// Before editing the file please consider generating it again.\n"
"\n"
diff --git a/TAO/utils/catior/Catior_i.cpp b/TAO/utils/catior/Catior_i.cpp
index 917d965291b..344b85c517f 100644
--- a/TAO/utils/catior/Catior_i.cpp
+++ b/TAO/utils/catior/Catior_i.cpp
@@ -1100,7 +1100,7 @@ Catior_i::cat_codeset_info (TAO_InputCDR& cdr)
"for char.\n"),
false);
- ACE_OS::snprintf (buf, bufsize, "\tNumber of CCS for char %u\n", c_ccslen);
+ ACE_OS::snprintf (buf, bufsize, "\tNumber of CCS for char: %u\n", c_ccslen);
buffer_ += buf;
if (c_ccslen)
@@ -1131,7 +1131,7 @@ Catior_i::cat_codeset_info (TAO_InputCDR& cdr)
"for wchar.\n"),
false);
- ACE_OS::snprintf (buf, bufsize, "\tNumber of CCS for wchar %u\n", w_ccslen);
+ ACE_OS::snprintf (buf, bufsize, "\tNumber of CCS for wchar: %u\n", w_ccslen);
buffer_ += buf;
if (w_ccslen)