summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcrodrigu <crodrigu@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-11-14 02:17:10 +0000
committercrodrigu <crodrigu@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-11-14 02:17:10 +0000
commitbdab9279a862772645c7b7c4be44230a08dbc7eb (patch)
tree6e2a3557706418f2a55d7520315c3197f5a7ccbb
parent23f4a1ab82fb76507f10d450d9bf518434d6a5b2 (diff)
downloadATCD-bdab9279a862772645c7b7c4be44230a08dbc7eb.tar.gz
ChangeLogTag: Tue Nov 13 20:58:02 2001 Craig Rodrigues <crodrigu@bbn.com>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a10
-rw-r--r--TAO/orbsvcs/orbsvcs/AV/FlowSpec_Entry.cpp4
-rw-r--r--TAO/orbsvcs/orbsvcs/AV/RTCP_Packet.cpp6
-rw-r--r--TAO/orbsvcs/orbsvcs/AV/UDP.cpp1
-rw-r--r--TAO/orbsvcs/orbsvcs/AV/md5.h8
5 files changed, 19 insertions, 10 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index c86988375f8..12c3e186097 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,13 @@
+Tue Nov 13 20:58:02 2001 Craig Rodrigues <crodrigu@bbn.com>
+
+ * orbsvcs/orbsvcs/AV/md5.h: Changed comments from C++ style
+ to C style in C file.
+ * orbsvcs/orbsvcs/AV/FlowSpec_Entry.cpp:
+ Default initialized variables.
+ * orbsvcs/orbsvcs/AV/RTCP_Packet.cpp:
+ Default initialized variable.
+ * orbsvcs/orbsvcs/AV/UDP.cpp: Removed unused variable.
+
Tue Nov 13 19:23:24 2001 Krishnakumar B <kitty@cs.wustl.edu>
* orbsvcs/tests/Concurrency/Makefile:
diff --git a/TAO/orbsvcs/orbsvcs/AV/FlowSpec_Entry.cpp b/TAO/orbsvcs/orbsvcs/AV/FlowSpec_Entry.cpp
index 27afeee6e72..ca4f611372d 100644
--- a/TAO/orbsvcs/orbsvcs/AV/FlowSpec_Entry.cpp
+++ b/TAO/orbsvcs/orbsvcs/AV/FlowSpec_Entry.cpp
@@ -565,7 +565,7 @@ TAO_Forward_FlowSpec_Entry::entry_to_string (void)
if (this->control_address_ != 0)
{
- u_short control_port;
+ u_short control_port = 0;
switch (this->protocol_)
{
@@ -742,7 +742,7 @@ TAO_Reverse_FlowSpec_Entry::entry_to_string (void)
if (this->control_address_ != 0)
{
- u_short control_port;
+ u_short control_port = 0;
switch (this->protocol_)
diff --git a/TAO/orbsvcs/orbsvcs/AV/RTCP_Packet.cpp b/TAO/orbsvcs/orbsvcs/AV/RTCP_Packet.cpp
index 0d1d802ff73..1eb1f6c42d7 100644
--- a/TAO/orbsvcs/orbsvcs/AV/RTCP_Packet.cpp
+++ b/TAO/orbsvcs/orbsvcs/AV/RTCP_Packet.cpp
@@ -463,8 +463,8 @@ RTCP_SDES_Packet::RTCP_SDES_Packet(char* buffer, int *len):
RTCP_Packet (buffer)
{
unsigned int i;
- sdesChunk_t *cp; // pointer to chunk
- sdesItem_t *ip; // pointer to item
+ sdesChunk_t *cp = 0; // pointer to chunk
+ sdesItem_t *ip = 0; // pointer to item
// The common part of the control packet header is processed
// in the parent. It is 4 bytes long.
@@ -1015,7 +1015,7 @@ RTCP_SR_Packet::RTCP_SR_Packet (char* buffer,
: RTCP_Packet (buffer)
{
unsigned int i = 0;
- RR_Block *local_block_ptr;
+ RR_Block *local_block_ptr = 0;
this->rr_ = 0;
diff --git a/TAO/orbsvcs/orbsvcs/AV/UDP.cpp b/TAO/orbsvcs/orbsvcs/AV/UDP.cpp
index 6416a1eef3a..0e53d7ce491 100644
--- a/TAO/orbsvcs/orbsvcs/AV/UDP.cpp
+++ b/TAO/orbsvcs/orbsvcs/AV/UDP.cpp
@@ -556,7 +556,6 @@ TAO_AV_UDP_Connector::connect (TAO_FlowSpec_Entry *entry,
{
ACE_INET_Addr *local_addr;
- int result = -1;
this->entry_ = entry;
this->flowname_ = entry->flowname ();
this->flow_component_ = flow_component;
diff --git a/TAO/orbsvcs/orbsvcs/AV/md5.h b/TAO/orbsvcs/orbsvcs/AV/md5.h
index 33b19b52299..4e4c1fe5261 100644
--- a/TAO/orbsvcs/orbsvcs/AV/md5.h
+++ b/TAO/orbsvcs/orbsvcs/AV/md5.h
@@ -35,12 +35,12 @@ typedef struct {
extern "C" {
#endif
-//void MD5Init PROTO_LIST ((MD5_CTX *));
+/* void MD5Init PROTO_LIST ((MD5_CTX *)); */
void MD5Init (MD5_CTX *);
-//void MD5Update PROTO_LIST
-// ((MD5_CTX *, unsigned char *, unsigned int));
+/* void MD5Update PROTO_LIST */
+/* ((MD5_CTX *, unsigned char *, unsigned int)); */
void MD5Update (MD5_CTX *, unsigned char *, unsigned int);
-//void MD5Final PROTO_LIST ((unsigned char [16], MD5_CTX *));
+/* void MD5Final PROTO_LIST ((unsigned char [16], MD5_CTX *)); */
void MD5Final (unsigned char [16], MD5_CTX *);
#ifdef __cplusplus