summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-04-19 17:51:53 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-04-19 17:51:53 +0000
commit7d8d06ef77b759cb7e31e28b6fcf508189f86bf0 (patch)
tree97c9b3724d0200b088f47e9a560f77fa9dac5e2b
parentce3373de922e422f87e1650fc27f6d694d912c09 (diff)
downloadATCD-7d8d06ef77b759cb7e31e28b6fcf508189f86bf0.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-97a8
-rw-r--r--ace/Log_Msg.cpp4
-rw-r--r--ace/Log_Msg.h4
3 files changed, 10 insertions, 6 deletions
diff --git a/ChangeLog-97a b/ChangeLog-97a
index a3cd3ccff11..dbb62807c67 100644
--- a/ChangeLog-97a
+++ b/ChangeLog-97a
@@ -1,11 +1,15 @@
+Sat Apr 19 11:56:35 1997 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * ace/Log_Msg.cpp (log_hexdump): The char * arguments should be
+ const char *'s. Thanks to Matthias Kerkhoff
+ <make@cs.tu-berlin.de> for reporting this.
+
Thu Apr 17 08:25:06 1997 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/Memory_Pool.h: Fixed a couple of typos in Memory_Pool
classes. Thanks to Neil B. Cohen <nbc@metsci.com> for reporting
this.
-Thu Apr 17 08:25:06 1997 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
-
* netsvcs/lib/Name_Handler.h: Arrgh, there was still one more
missing #include that I forgot to move into the *.h file.
Thanks to David Levine for noticing this.
diff --git a/ace/Log_Msg.cpp b/ace/Log_Msg.cpp
index 8524ae65f79..5378cbea14c 100644
--- a/ace/Log_Msg.cpp
+++ b/ace/Log_Msg.cpp
@@ -962,9 +962,9 @@ ACE_Log_Msg::log (const char *format_str,
int
ACE_Log_Msg::log_hexdump (ACE_Log_Priority log_priority,
- char *buffer,
+ const char *buffer,
int size,
- char *text)
+ const char *text)
{
char buf[ACE_Log_Record::MAXLOGMSGLEN - ACE_Log_Record::VERBOSE_LEN - 58];
// 58 for the HEXDUMP header;
diff --git a/ace/Log_Msg.h b/ace/Log_Msg.h
index 4a4e5a059b3..ae9b7c6e229 100644
--- a/ace/Log_Msg.h
+++ b/ace/Log_Msg.h
@@ -288,9 +288,9 @@ public:
// into the ACE mechanism.
int log_hexdump (ACE_Log_Priority log_priority,
- char *buffer,
+ const char *buffer,
int size,
- char *text = 0);
+ const char *text = 0);
// Method to log hex dump. This is useful for debugging. Calls
// <log> to do the actual print, but formats first to make the chars
// printable.