You are viewing a plain text version of this content. The canonical link for it is here.
Posted to websh-cvs@tcl.apache.org by da...@apache.org on 2001/11/21 23:45:12 UTC

cvs commit: tcl-websh/src/generic log.c

davidw      01/11/21 14:45:12

  Modified:    src/generic log.c
  Log:
  * generic/log.c (createLogData): Change logSubst to default to 0
    (off).
  Fixes http://nagoya.apache.org/bugzilla/show_bug.cgi?id=4737
  
  Revision  Changes    Path
  1.4       +2 -2      tcl-websh/src/generic/log.c
  
  Index: log.c
  ===================================================================
  RCS file: /home/cvs/tcl-websh/src/generic/log.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- log.c	2001/10/25 17:50:13	1.3
  +++ log.c	2001/11/21 22:45:12	1.4
  @@ -9,7 +9,7 @@
    * See the file "license.terms" for information on usage and
    * redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
    *
  - * @(#) $Id: log.c,v 1.3 2001/10/25 17:50:13 davidw Exp $
  + * @(#) $Id: log.c,v 1.4 2001/11/21 22:45:12 davidw Exp $
    *
    */
   
  @@ -142,7 +142,7 @@
   	HashUtlAllocInit(logData->listOfDests, TCL_STRING_KEYS);
   	logData->destCnt = 0;
   	HashUtlAllocInit(logData->listOfPlugIns, TCL_STRING_KEYS);
  -	logData->logSubst = 1;
  +	logData->logSubst = 0;
       }
   
       return logData;