You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2002/02/27 01:58:17 UTC

cvs commit: httpd-2.0/modules/ssl ssl_engine_log.c

rbb         02/02/26 16:58:17

  Modified:    modules/ssl ssl_engine_log.c
  Log:
  Use the empty string, not NUL.  I should have read my code more closely.
  
  Thanks Cliff for slapping me in the head.
  
  Revision  Changes    Path
  1.10      +1 -1      httpd-2.0/modules/ssl/ssl_engine_log.c
  
  Index: ssl_engine_log.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/ssl/ssl_engine_log.c,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- ssl_engine_log.c	27 Feb 2002 00:39:01 -0000	1.9
  +++ ssl_engine_log.c	27 Feb 2002 00:58:17 -0000	1.10
  @@ -215,7 +215,7 @@
   
       /*  determine whether newline should be written */
       if (add & SSL_NO_NEWLINE)
  -        nstr = NUL;
  +        nstr = "";
       else {
           nstr = APR_EOL_STR;
       }