summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2000-03-10 18:53:31 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2000-03-10 18:53:31 +0000
commit5a00769922c6defb1f54a425de221ccbd65bb011 (patch)
treec0cf8838340cf0a5993bee7f3a352e6c20cb166b
parent385f7e45b6e3dae775d2321e71c0c88df9091f1b (diff)
downloadATCD-5a00769922c6defb1f54a425de221ccbd65bb011.tar.gz
ChangeLogTag:Fri Mar 10 00:17:37 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a8
-rw-r--r--TAO/utils/nslist/nslist.cpp2
2 files changed, 9 insertions, 1 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 43c0d02efdd..b08ad25cacd 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Fri Mar 10 12:50:37 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * utils/nslist/nslist.cpp (show_chunk): Make sure to handle the
+ case where the "kind" field has a value. Thanks to Paul
+ Calabrese <calabrese_p@ociweb.com> for reporting this.
+
Fri Mar 10 11:33:38 2000 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/Smart_Proxies/On_Demand/Smart_Test_Factory.cpp: Fixed a
@@ -26,7 +32,7 @@ Thu Mar 09 18:25:00 2000 Angelo Corsaro <corsaro@cs.wustl.edu>
* TAO/orbsvcs/orbsvcs/AV/Transport.h: These files were using the
#if !defined (WHATEVER) as multiple inclusion guard instead of
#ifndef WHATEVER. Thanks to Paul Calabrese
- <calabrese_p@ociweb.com> for reporting that.
+ <calabrese_p@ociweb.com> for reporting that.
* TAO/orbsvcs/orbsvcs/AV/TCP.h:
* TAO/orbsvcs/orbsvcs/Event/Debug_Macros.h:
diff --git a/TAO/utils/nslist/nslist.cpp b/TAO/utils/nslist/nslist.cpp
index 36ebc07c2c9..57eac3b10e5 100644
--- a/TAO/utils/nslist/nslist.cpp
+++ b/TAO/utils/nslist/nslist.cpp
@@ -53,6 +53,8 @@ show_chunk (CosNaming::NamingContext_ptr nc,
Name.length (1);
Name[0].id =
CORBA::string_dup (bl[i].binding_name[0].id);
+ Name[0].kind =
+ CORBA::string_dup (bl[i].binding_name[0].kind);
CORBA::Object_var obj = nc->resolve (Name);