summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLog5
-rw-r--r--TAO/tests/Server_Connection_Purging/client.cpp2
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;