summaryrefslogtreecommitdiff
path: root/ACE/protocols
diff options
context:
space:
mode:
authorPhil Mesnier <mesnier_p@ociweb.com>2007-08-20 20:04:05 +0000
committerPhil Mesnier <mesnier_p@ociweb.com>2007-08-20 20:04:05 +0000
commit65ef321ed1c95f4c19fb4eb6ebbf7bcdce5e2334 (patch)
tree8193e3942dc209b0aad7b4eeb34d88dfcc6d1995 /ACE/protocols
parent19109dd662c9664e12c8d0836d368d8d205b1b22 (diff)
downloadATCD-65ef321ed1c95f4c19fb4eb6ebbf7bcdce5e2334.tar.gz
Mon Aug 20 20:02:32 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
Diffstat (limited to 'ACE/protocols')
-rw-r--r--ACE/protocols/tests/HTBP/Reactor_Tests/server.cpp2
-rw-r--r--ACE/protocols/tests/HTBP/Send_Large_Msg/server.cpp2
-rw-r--r--ACE/protocols/tests/HTBP/Send_Recv_Tests/server.cpp2
-rw-r--r--ACE/protocols/tests/HTBP/ping/server.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/ACE/protocols/tests/HTBP/Reactor_Tests/server.cpp b/ACE/protocols/tests/HTBP/Reactor_Tests/server.cpp
index ceac49c5094..91cb0f2bdca 100644
--- a/ACE/protocols/tests/HTBP/Reactor_Tests/server.cpp
+++ b/ACE/protocols/tests/HTBP/Reactor_Tests/server.cpp
@@ -231,7 +231,7 @@ ACE_TMAIN (int argc, ACE_TCHAR * argv[])
if (notifier_file != 0)
{
FILE *f = ACE_OS::fopen (notifier_file,ACE_TEXT("w+"));
- char *msg = "server ready";
+ const char *msg = "server ready";
ACE_OS::fwrite (msg,ACE_OS::strlen(msg),1,f);
ACE_OS::fclose (f);
}
diff --git a/ACE/protocols/tests/HTBP/Send_Large_Msg/server.cpp b/ACE/protocols/tests/HTBP/Send_Large_Msg/server.cpp
index ee97cfc0c17..10e380c8bcb 100644
--- a/ACE/protocols/tests/HTBP/Send_Large_Msg/server.cpp
+++ b/ACE/protocols/tests/HTBP/Send_Large_Msg/server.cpp
@@ -68,7 +68,7 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[])
if (notifier_file != 0)
{
FILE *f = ACE_OS::fopen (notifier_file,ACE_TEXT("w+"));
- char *msg = "server ready";
+ const char *msg = "server ready";
ACE_OS::fwrite (msg,ACE_OS::strlen(msg),1,f);
ACE_OS::fclose (f);
}
diff --git a/ACE/protocols/tests/HTBP/Send_Recv_Tests/server.cpp b/ACE/protocols/tests/HTBP/Send_Recv_Tests/server.cpp
index c50c6fb8fbb..debf8d0557d 100644
--- a/ACE/protocols/tests/HTBP/Send_Recv_Tests/server.cpp
+++ b/ACE/protocols/tests/HTBP/Send_Recv_Tests/server.cpp
@@ -119,7 +119,7 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[])
if (notifier_file != 0)
{
FILE *f = ACE_OS::fopen (notifier_file,ACE_TEXT("w+"));
- char *msg = "server ready";
+ const char *msg = "server ready";
ACE_OS::fwrite (msg,ACE_OS::strlen(msg),1,f);
ACE_OS::fclose (f);
}
diff --git a/ACE/protocols/tests/HTBP/ping/server.cpp b/ACE/protocols/tests/HTBP/ping/server.cpp
index 9024980ada6..2a9c16427fc 100644
--- a/ACE/protocols/tests/HTBP/ping/server.cpp
+++ b/ACE/protocols/tests/HTBP/ping/server.cpp
@@ -63,7 +63,7 @@ ACE_TMAIN (int argc , ACE_TCHAR *argv[])
if (notifier_file != 0)
{
FILE *f = ACE_OS::fopen (notifier_file,ACE_TEXT("w+"));
- char *msg = "server ready";
+ const char *msg = "server ready";
ACE_OS::fwrite (msg,ACE_OS::strlen(msg),1,f);
ACE_OS::fclose (f);
}