mwomack     2005/08/22 22:26:58

  Modified:    .        Tag: v1_2-branch build.xml
               docs     Tag: v1_2-branch HISTORY.txt
               src/java/org/apache/log4j/nt Tag: v1_2-branch nteventlog.cpp
  Log:
  Fix for bug #34981.
  Prepping build.xml for rc5 version.
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.34.2.35 +1 -1      logging-log4j/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/logging-log4j/build.xml,v
  retrieving revision 1.34.2.34
  retrieving revision 1.34.2.35
  diff -u -r1.34.2.34 -r1.34.2.35
  --- build.xml 22 Aug 2005 20:51:34 -0000      1.34.2.34
  +++ build.xml 23 Aug 2005 05:26:55 -0000      1.34.2.35
  @@ -17,7 +17,7 @@
     <!-- prefixed with "env". -->
     <property environment="env"/>
   
  -  <property name="version" value="1.2.12"/>
  +  <property name="version" value="1.2.12rc5"/>
   
     <!-- The base directory relative to which most targets are built -->
     <property name="base" value="."/>
  
  
  
  No                   revision
  No                   revision
  1.27.2.20 +4 -1      logging-log4j/docs/HISTORY.txt
  
  Index: HISTORY.txt
  ===================================================================
  RCS file: /home/cvs/logging-log4j/docs/HISTORY.txt,v
  retrieving revision 1.27.2.19
  retrieving revision 1.27.2.20
  diff -u -r1.27.2.19 -r1.27.2.20
  --- HISTORY.txt       20 Aug 2005 00:58:48 -0000      1.27.2.19
  +++ HISTORY.txt       23 Aug 2005 05:26:56 -0000      1.27.2.20
  @@ -5,7 +5,7 @@
          client code. 
    [***] Changes requiring important modifications to existing client code.
   
  - August 26th, 2005
  + August TBD, 2005
   
    - Release of version 1.2.12
   
  @@ -67,6 +67,9 @@
    
    - Fixed bug 35893 by adding log4j 1.1 compatibility method
      to o.a.l.helpers.Loader. [*]
  +   
  + - Fixed bug 34981 dealing with additional null terminating character in 
Windows
  +   nteventlog.cpp code. No effect on Java related code. [*]
   
    June 18th, 2005
    
  
  
  
  No                   revision
  No                   revision
  1.4.2.2   +1 -1      
logging-log4j/src/java/org/apache/log4j/nt/Attic/nteventlog.cpp
  
  Index: nteventlog.cpp
  ===================================================================
  RCS file: 
/home/cvs/logging-log4j/src/java/org/apache/log4j/nt/Attic/nteventlog.cpp,v
  retrieving revision 1.4.2.1
  retrieving revision 1.4.2.2
  diff -u -r1.4.2.1 -r1.4.2.2
  --- nteventlog.cpp    24 May 2005 05:06:21 -0000      1.4.2.1
  +++ nteventlog.cpp    23 Aug 2005 05:26:57 -0000      1.4.2.2
  @@ -129,7 +129,7 @@
   }
   
   void regSetString(HKEY hkey, TCHAR *name, TCHAR *value) {
  -  RegSetValueEx(hkey, name, 0, REG_SZ, (LPBYTE)value, lstrlen(value));
  +  RegSetValueEx(hkey, name, 0, REG_SZ, (LPBYTE)value, lstrlen(value) + 
sizeof(TCHAR));
   }
   
   void regSetDword(HKEY hkey, TCHAR *name, DWORD value) {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to