summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>1999-06-12 00:36:57 +0000
committerbala <balanatarajan@users.noreply.github.com>1999-06-12 00:36:57 +0000
commitc6aa25a2d83b25290da82e46df4a33fd07df928c (patch)
tree8a830e19bcccd19f5c04ae558ac36a14f8a62b3a
parent4ca3ced9dc14c60a5506419b50c5bc805e5e33ad (diff)
downloadATCD-c6aa25a2d83b25290da82e46df4a33fd07df928c.tar.gz
*** empty log message ***
-rw-r--r--TAO/ChangeLog-99c3
-rw-r--r--TAO/examples/POA/TIE/server.cpp4
2 files changed, 5 insertions, 2 deletions
diff --git a/TAO/ChangeLog-99c b/TAO/ChangeLog-99c
index 42e280ba653..d8bb635885e 100644
--- a/TAO/ChangeLog-99c
+++ b/TAO/ChangeLog-99c
@@ -1,5 +1,8 @@
Fri Jun 11 19:26:30 1999 Balachandran Natarajan <bala@cs.wustl.edu>
+ * examples/POA/TIE/server.cpp (main): Fixed a small problem on
+ NT. It was not writing the IOR to a file. It was fixed.
+
* examples/POA/TIE/run_test.pl: Made a change to be on par with
Carlos's latest standard.
diff --git a/TAO/examples/POA/TIE/server.cpp b/TAO/examples/POA/TIE/server.cpp
index 12dfa0de4be..239a0e2ad5f 100644
--- a/TAO/examples/POA/TIE/server.cpp
+++ b/TAO/examples/POA/TIE/server.cpp
@@ -218,11 +218,11 @@ main (int argc, char **argv)
FILE *output_file_6 = ACE_OS::fopen ("ior_6", "w");
if (output_file_5)
- ACE_OS::fprintf (output_file_1,
+ ACE_OS::fprintf (output_file_5,
"%s",
fifth_ior.in ());
if (output_file_6)
- ACE_OS::fprintf (output_file_1,
+ ACE_OS::fprintf (output_file_6,
"%s",
sixth_ior.in ());