diff options
author | bala <balanatarajan@users.noreply.github.com> | 2002-12-05 19:42:55 +0000 |
---|---|---|
committer | bala <balanatarajan@users.noreply.github.com> | 2002-12-05 19:42:55 +0000 |
commit | 53e561725daebd247fdc96dfe2274b46fc8ac8e9 (patch) | |
tree | c3eda04f0184462b37e6bd1539e0c28b640da9a2 | |
parent | c5bda221c24c1e5fb28ea62e4671204fc5622962 (diff) | |
download | ATCD-53e561725daebd247fdc96dfe2274b46fc8ac8e9.tar.gz |
ChangeLogTag: Thu Dec 5 14:42:21 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
-rw-r--r-- | TAO/ChangeLog | 5 | ||||
-rw-r--r-- | TAO/tests/Server_Connection_Purging/client.cpp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog index 802f7258108..d6764e1a683 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,3 +1,8 @@ +Thu Dec 5 14:42:21 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu> + + * tests/Server_Connection_Purging/client.cpp: Fixed a warning in + gcc 32 builds. + Thu Dec 5 11:16:40 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu> * tests/Server_Connection_Purging/run_test.pl: Missed this in my diff --git a/TAO/tests/Server_Connection_Purging/client.cpp b/TAO/tests/Server_Connection_Purging/client.cpp index 65cf57bee42..bb6bf26f454 100644 --- a/TAO/tests/Server_Connection_Purging/client.cpp +++ b/TAO/tests/Server_Connection_Purging/client.cpp @@ -4,7 +4,7 @@ #include "ace/SOCK_Connector.h" #include "ace/TP_Reactor.h" -static char *host = "localhost"; +const char *host = "localhost"; static int port = 10008; const int iter = 80; int purged_handles = 0; |