summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsma <sma@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2012-08-13 14:36:11 +0000
committersma <sma@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2012-08-13 14:36:11 +0000
commit68063f87f3632f52b093cc08f29c9f5f152a45eb (patch)
treea2cbcb63e0b82e1e81029f4649d73bac1c7b2733
parentc25bf66bdc2a2975001873933c25e45f2ecc8518 (diff)
downloadATCD-68063f87f3632f52b093cc08f29c9f5f152a45eb.tar.gz
Mon Aug 13 4:38:00 UTC 2012 Simon Massey <sma at prismtech dot com>
orbsvcs/orbsvcs/PortableGroup/UIPMC_Profile.cpp: Major and Minor should be set not Major and Major!
-rw-r--r--TAO/ChangeLog5
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Profile.cpp6
2 files changed, 8 insertions, 3 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 2a13bb612ea..921cd41fd07 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,8 @@
+Mon Aug 13 4:38:00 UTC 2012 Simon Massey <sma at prismtech dot com>
+
+ * orbsvcs/orbsvcs/PortableGroup/UIPMC_Profile.cpp:
+ Major and Minor should be set not Major and Major!
+
Mon Aug 13 13:42:00 UTC 2012 Simon Massey <sma at prismtech dot com>
* doc/Options.html:
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Profile.cpp b/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Profile.cpp
index e1df3954d45..6cee8792eff 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Profile.cpp
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Profile.cpp
@@ -42,7 +42,7 @@ TAO_UIPMC_Profile::TAO_UIPMC_Profile (TAO_ORB_Core *orb_core)
{
// The default for component version is 1.0.
this->component_version_.major = 1;
- this->component_version_.major = 0;
+ this->component_version_.minor = 0;
this->addressing_mode_ = default_addressing_mode_;
}
@@ -61,7 +61,7 @@ TAO_UIPMC_Profile::TAO_UIPMC_Profile (const ACE_INET_Addr &addr,
{
// The default for component version is 1.0.
this->component_version_.major = 1;
- this->component_version_.major = 0;
+ this->component_version_.minor = 0;
this->addressing_mode_ = default_addressing_mode_;
}
@@ -81,7 +81,7 @@ TAO_UIPMC_Profile::TAO_UIPMC_Profile (const CORBA::Octet class_d_address[4],
{
// The default for component version is 1.0.
this->component_version_.major = 1;
- this->component_version_.major = 0;
+ this->component_version_.minor = 0;
this->addressing_mode_ = default_addressing_mode_;
}