diff options
author | Phil Mesnier <mesnier_p@ociweb.com> | 2007-08-20 20:04:05 +0000 |
---|---|---|
committer | Phil Mesnier <mesnier_p@ociweb.com> | 2007-08-20 20:04:05 +0000 |
commit | 65ef321ed1c95f4c19fb4eb6ebbf7bcdce5e2334 (patch) | |
tree | 8193e3942dc209b0aad7b4eeb34d88dfcc6d1995 /ACE/protocols | |
parent | 19109dd662c9664e12c8d0836d368d8d205b1b22 (diff) | |
download | ATCD-65ef321ed1c95f4c19fb4eb6ebbf7bcdce5e2334.tar.gz |
Mon Aug 20 20:02:32 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
Diffstat (limited to 'ACE/protocols')
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); } |