summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbdullah Sowayan <sowayan@users.noreply.github.com>2007-05-27 14:09:57 +0000
committerAbdullah Sowayan <sowayan@users.noreply.github.com>2007-05-27 14:09:57 +0000
commit8d4f578895021279d95ae616bebf4ba3b2530cef (patch)
tree4dd9312892aa1624cccfb60b30ad685d87e8072a
parent4d772ec27d446e7c6b814e9285b5cb8c0d46002d (diff)
downloadATCD-8d4f578895021279d95ae616bebf4ba3b2530cef.tar.gz
Sun May 27 14:03:18 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
-rw-r--r--ACE/ChangeLog7
-rw-r--r--ACE/netsvcs/clients/Naming/Client/Client_Test.cpp2
2 files changed, 8 insertions, 1 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 72eb451b21a..a39662548b4 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,10 @@
+Sun May 27 14:09:54 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
+
+ * netsvcs/clients/Naming/Client/Client_Test.cpp:
+
+ Addressed the "assignment within conditional expression" warning
+ on the WinXP_VC71_WarningLevel4 build.
+
Fri May 25 19:09:55 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Mem_Map.cpp:
diff --git a/ACE/netsvcs/clients/Naming/Client/Client_Test.cpp b/ACE/netsvcs/clients/Naming/Client/Client_Test.cpp
index 0cc05964720..266ef2996e6 100644
--- a/ACE/netsvcs/clients/Naming/Client/Client_Test.cpp
+++ b/ACE/netsvcs/clients/Naming/Client/Client_Test.cpp
@@ -202,7 +202,7 @@ Client_Test::handle_input (ACE_HANDLE)
ACE_OS::fgets (input, sizeof input, stdin);
// get the key
- if ((temp_buf = ACE_OS::strtok (input, " ")))
+ if (0 != (temp_buf = ACE_OS::strtok (input, " ")))
{
ACE_OS::strcpy (buf1, temp_buf);