summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2004-08-31 19:03:09 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2004-08-31 19:03:09 +0000
commit22015a789a816f9eed0d1bc4a09b844170c3a06f (patch)
treefc050e014c48b46e5622f740711d61171f4dbf52 /TAO
parent2189814c7fe041f07b3d45cb11935ba3fce622c2 (diff)
downloadATCD-22015a789a816f9eed0d1bc4a09b844170c3a06f.tar.gz
ChangeLogTag: Tue Aug 31 19:01:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO')
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/orbsvcs/tests/AVStreams/Full_Profile/ftp.cpp2
2 files changed, 8 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 98f2122fe16..f372e838dc3 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Tue Aug 31 19:01:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * orbsvcs/tests/AVStreams/Full_Profile/ftp.cpp:
+ When the input file cannot be opened, log an error and return -1
+ instead of going on further without an input file, which results
+ in strange crashes.
+
Tue Aug 31 10:00:48 2004 Chad Elliott <elliott_c@ociweb.com>
* TAO_IDL/be/be_visitor_array/array_ch.cpp:
diff --git a/TAO/orbsvcs/tests/AVStreams/Full_Profile/ftp.cpp b/TAO/orbsvcs/tests/AVStreams/Full_Profile/ftp.cpp
index e97d80f477b..6f11e981b6d 100644
--- a/TAO/orbsvcs/tests/AVStreams/Full_Profile/ftp.cpp
+++ b/TAO/orbsvcs/tests/AVStreams/Full_Profile/ftp.cpp
@@ -254,7 +254,7 @@ Client::init (int argc,char **argv)
}
else
{
- ACE_ERROR_RETURN ((LM_ERROR, "file %s could not be opened\n",
+ ACE_ERROR_RETURN ((LM_ERROR, "ERROR: file %s could not be opened\n",
this->filename_), -1);
}
}