From: sameer@c2.org (Sameer Parkeh)
Subject: fix mod_cookies.c SEGV
Affects: mod_cookies.c
Problem: the pstrcat call in mod_cookies.c didn't have an ending NULL,
 	 which caused a SEGV with cookies enabled

*** 1.2	1996/01/31 09:08:40
--- mod_cookies.c	1996/02/01 01:43:42
***************
*** 200,206 ****
  		timz%3600);
  
  /* ignore s= on cookie */
!     str = pstrcat(orig->pool, cookie + 2, " \"", orig->the_request, tstr);
      
      write(cls->log_fd, str, strlen(str));
  
--- 200,206 ----
  		timz%3600);
  
  /* ignore s= on cookie */
!     str = pstrcat(orig->pool, cookie + 2, " \"", orig->the_request, tstr, NULL);
      
      write(cls->log_fd, str, strlen(str));
  
