summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2001-08-06 14:05:21 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2001-08-06 14:05:21 +0000
commit0505f5dce80046f6cb2cd981979d4a15fa11347f (patch)
treed8401b532bc32843f300b2fbea0c38aeee9eef0b
parentdef1a8231b8287e615a8136746eb0b1db1b860b2 (diff)
downloadATCD-0505f5dce80046f6cb2cd981979d4a15fa11347f.tar.gz
ChangeLogTag:Mon Aug 06 09:04:04 2001 Ossama Othman <ossama@uci.edu>
-rw-r--r--ChangeLog11
-rw-r--r--ChangeLogs/ChangeLog-02a11
-rw-r--r--ChangeLogs/ChangeLog-03a11
-rw-r--r--ace/Svc_Conf.l16
4 files changed, 35 insertions, 14 deletions
diff --git a/ChangeLog b/ChangeLog
index 3df6d42acca..ef32866ea83 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,15 +1,22 @@
+Mon Aug 06 09:04:04 2001 Ossama Othman <ossama@uci.edu>
+
+ * ace/Svc_Conf.l:
+
+ Unicode updates. Wrap debugging text within an ACE_LIB_TEXT
+ macro.
+
Sun Aug 5 14:31:10 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/run_tests.lst: Ossama suggested that we dont run the
Service_Config_Test in static builds.
-
Fri Aug 04 3:33:31 2001 Yamuna Krishnamurthy <yamuna@cs.wustl.edu>
* ace/QoS/SOCK_Dgram_Mcast_QoS.h:
* ace/QoS/SOCK_Dgram_Mcast_QoS.cpp:
- Made the open method public so we can open UDP sockets for non-multicast addresses.
+ Made the open method public so we can open UDP sockets for
+ non-multicast addresses.
Fri Aug 03 22:19:31 2001 Steve Huston <shuston@riverace.com>
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 3df6d42acca..ef32866ea83 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,15 +1,22 @@
+Mon Aug 06 09:04:04 2001 Ossama Othman <ossama@uci.edu>
+
+ * ace/Svc_Conf.l:
+
+ Unicode updates. Wrap debugging text within an ACE_LIB_TEXT
+ macro.
+
Sun Aug 5 14:31:10 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/run_tests.lst: Ossama suggested that we dont run the
Service_Config_Test in static builds.
-
Fri Aug 04 3:33:31 2001 Yamuna Krishnamurthy <yamuna@cs.wustl.edu>
* ace/QoS/SOCK_Dgram_Mcast_QoS.h:
* ace/QoS/SOCK_Dgram_Mcast_QoS.cpp:
- Made the open method public so we can open UDP sockets for non-multicast addresses.
+ Made the open method public so we can open UDP sockets for
+ non-multicast addresses.
Fri Aug 03 22:19:31 2001 Steve Huston <shuston@riverace.com>
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 3df6d42acca..ef32866ea83 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,15 +1,22 @@
+Mon Aug 06 09:04:04 2001 Ossama Othman <ossama@uci.edu>
+
+ * ace/Svc_Conf.l:
+
+ Unicode updates. Wrap debugging text within an ACE_LIB_TEXT
+ macro.
+
Sun Aug 5 14:31:10 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/run_tests.lst: Ossama suggested that we dont run the
Service_Config_Test in static builds.
-
Fri Aug 04 3:33:31 2001 Yamuna Krishnamurthy <yamuna@cs.wustl.edu>
* ace/QoS/SOCK_Dgram_Mcast_QoS.h:
* ace/QoS/SOCK_Dgram_Mcast_QoS.cpp:
- Made the open method public so we can open UDP sockets for non-multicast addresses.
+ Made the open method public so we can open UDP sockets for
+ non-multicast addresses.
Fri Aug 03 22:19:31 2001 Steve Huston <shuston@riverace.com>
diff --git a/ace/Svc_Conf.l b/ace/Svc_Conf.l
index b09d5c194f7..0eb3724b58d 100644
--- a/ace/Svc_Conf.l
+++ b/ace/Svc_Conf.l
@@ -109,10 +109,10 @@ yy_push_buffer (FILE *file)
if (yy_stack_index >= ACE_SERVICE_DIRECTIVE_STACK_DEPTH)
{
ACE_ERROR ((LM_ERROR,
- "(%P|%t) Service Configurator directive nesting "
- "is too deep.\n"
- "(%P|%t) Consider increasing value of "
- "ACE_SERVICE_DIRECTIVE_STACK_DEPTH.\n"));
+ ACE_LIB_TEXT ("(%P|%t) Service Configurator directive ")
+ ACE_LIB_TEXT ("nesting is too deep.\n")
+ ACE_LIB_TEXT ("(%P|%t) Consider increasing value of ")
+ ACE_LIB_TEXT ("ACE_SERVICE_DIRECTIVE_STACK_DEPTH.\n")));
// Not much we can do, so resort to flushing the current buffer
// and switch to the supplied stream.
@@ -133,10 +133,10 @@ yy_push_buffer (const ACE_TCHAR *directive)
if (yy_stack_index >= ACE_SERVICE_DIRECTIVE_STACK_DEPTH)
{
ACE_ERROR ((LM_ERROR,
- "(%P|%t) Service Configurator directive nesting "
- "is too deep.\n"
- "(%P|%t) Consider increasing value of "
- "ACE_SERVICE_DIRECTIVE_STACK_DEPTH.\n"));
+ ACE_LIB_TEXT ("(%P|%t) Service Configurator directive ")
+ ACE_LIB_TEXT ("nesting is too deep.\n")
+ ACE_LIB_TEXT ("(%P|%t) Consider increasing value of ")
+ ACE_LIB_TEXT ("ACE_SERVICE_DIRECTIVE_STACK_DEPTH.\n")));
// Not much we can do.
}