summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a6
-rw-r--r--TAO/tests/Portable_Interceptors/Benchmark/test.idl2
2 files changed, 7 insertions, 1 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 49f67e46a18..ffe4009e60a 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Wed Nov 22 09:23:08 2000 Ossama Othman <ossama@uci.edu>
+
+ * tests/Portable_Interceptors/Benchmark/test.idl:
+
+ Added missing "raises" clause to the authenticate() method.
+
Tue Nov 21 21:13:18 2000 Ossama Othman <ossama@uci.edu>
* tao/Object_Ref_Table.h (TAO_Object_Ref_Table):
diff --git a/TAO/tests/Portable_Interceptors/Benchmark/test.idl b/TAO/tests/Portable_Interceptors/Benchmark/test.idl
index a9ab2484085..734ad8e5301 100644
--- a/TAO/tests/Portable_Interceptors/Benchmark/test.idl
+++ b/TAO/tests/Portable_Interceptors/Benchmark/test.idl
@@ -39,7 +39,7 @@ module Test_Interceptors
short ready ();
// No args/exceptions operation.
- void authenticate (in string user);
+ void authenticate (in string user) raises (Invalid);
// throws a user exception.
long update_records (in long id, in Record val);