diff options
author | crodrigu <crodrigu@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-11-16 19:46:36 +0000 |
---|---|---|
committer | crodrigu <crodrigu@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-11-16 19:46:36 +0000 |
commit | bda60dd81591773778b559f8a00eea61deca3d20 (patch) | |
tree | 6f8e0f84ab45542f5c02e060a1fd691bdef86b32 /TAO | |
parent | c5311d900c371646a97c118e7280cd2f4578aae1 (diff) | |
download | ATCD-bda60dd81591773778b559f8a00eea61deca3d20.tar.gz |
ChangeLogTag: Fri Nov 16 13:36:09 2001 Craig Rodrigues <crodrigu@bbn.com>
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/ChangeLogs/ChangeLog-02a | 2 | ||||
-rw-r--r-- | TAO/orbsvcs/orbsvcs/AV/RTCP.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a index e530d9c0488..f6c9d54458f 100644 --- a/TAO/ChangeLogs/ChangeLog-02a +++ b/TAO/ChangeLogs/ChangeLog-02a @@ -4,6 +4,8 @@ Fri Nov 16 13:36:09 2001 Craig Rodrigues <crodrigu@bbn.com> destructor. Was causing Multicast and Pluggable tests to crash. * orbsvcs/orbsvcs/AV/UDP.cpp (open_i): Added a check of the result variable to remove a KAI C++ warning. + * orbsvcs/orbsvcs/AV/RTCP.cpp (rtcp_interval): Replaced argument + to ACE_OS::srand() with ACE_OS::time() to eliminate IA64 warning. Thu Nov 15 17:54:41 2001 Craig Rodrigues <crodrigu@bbn.com> diff --git a/TAO/orbsvcs/orbsvcs/AV/RTCP.cpp b/TAO/orbsvcs/orbsvcs/AV/RTCP.cpp index 1526fc5c20c..5849c7a6092 100644 --- a/TAO/orbsvcs/orbsvcs/AV/RTCP.cpp +++ b/TAO/orbsvcs/orbsvcs/AV/RTCP.cpp @@ -274,7 +274,7 @@ TAO_AV_RTCP::rtcp_interval (int members, if (initial) { // initialize the random number generator - ACE_OS::srand((unsigned int)avg_rtcp_size); + ACE_OS::srand(ACE_OS::time(0L)); rtcp_min_time /= 2; *avg_rtcp_size = 128; |