From: jongfoster <jongfoster@users.sourceforge.net>
Date: Tue, 9 Oct 2001 22:39:21 +0000 (+0000)
Subject: assert.h is also required under Win32, so moving out of #ifndef _WIN32
X-Git-Tag: v_2_9_9
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/developer-manual/faq/static/@default-cgi@?a=commitdiff_plain;h=fa5a5837b4b285984d33d9b29d110703224c2054;p=privoxy.git

assert.h is also required under Win32, so moving out of #ifndef _WIN32
block.
---

diff --git a/parsers.c b/parsers.c
index 47550db7..46f11895 100644
--- a/parsers.c
+++ b/parsers.c
@@ -1,4 +1,4 @@
-const char parsers_rcs[] = "$Id: parsers.c,v 1.33 2001/10/07 18:04:49 oes Exp $";
+const char parsers_rcs[] = "$Id: parsers.c,v 1.34 2001/10/07 18:50:55 oes Exp $";
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/parsers.c,v $
@@ -41,6 +41,9 @@ const char parsers_rcs[] = "$Id: parsers.c,v 1.33 2001/10/07 18:04:49 oes Exp $"
  *
  * Revisions   :
  *    $Log: parsers.c,v $
+ *    Revision 1.34  2001/10/07 18:50:55  oes
+ *    Added server_content_encoding, renamed server_transfer_encoding
+ *
  *    Revision 1.33  2001/10/07 18:04:49  oes
  *    Changed server_http11 to server_http and its pattern to "HTTP".
  *      Additional functionality: it now saves the HTTP status into
@@ -288,9 +291,9 @@ const char parsers_rcs[] = "$Id: parsers.c,v 1.33 2001/10/07 18:04:49 oes Exp $"
 #include <sys/types.h>
 #include <stdlib.h>
 #include <ctype.h>
-#include<assert.h>
 #endif
 
+#include <assert.h>
 #include <string.h>
 
 #ifndef _WIN32