From: jongfoster <jongfoster@users.sourceforge.net>
Date: Tue, 23 Oct 2001 21:41:35 +0000 (+0000)
Subject: Added call to initialize the (statically-allocated of course)
X-Git-Tag: v_2_9_10~90
X-Git-Url: http://www.privoxy.org/gitweb/@default-cgi@/faq/%22https:/static/@default-cgi@edit-actions?a=commitdiff_plain;h=6c47bd9275fc43e458004e9221a2e171ef30d4cf;p=privoxy.git

Added call to initialize the (statically-allocated of course)
"out of memory" CGI response.
---

diff --git a/jcc.c b/jcc.c
index 7c09830b..44f93989 100644
--- a/jcc.c
+++ b/jcc.c
@@ -1,4 +1,4 @@
-const char jcc_rcs[] = "$Id: jcc.c,v 1.47 2001/10/10 16:44:36 oes Exp $";
+const char jcc_rcs[] = "$Id: jcc.c,v 1.48 2001/10/10 19:56:46 jongfoster Exp $";
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/jcc.c,v $
@@ -33,6 +33,10 @@ const char jcc_rcs[] = "$Id: jcc.c,v 1.47 2001/10/10 16:44:36 oes Exp $";
  *
  * Revisions   :
  *    $Log: jcc.c,v $
+ *    Revision 1.48  2001/10/10 19:56:46  jongfoster
+ *    Moving some code that wasn't cookie-related out of an #ifdef
+ *    FEATURE_COOKIE_JAR
+ *
  *    Revision 1.47  2001/10/10 16:44:36  oes
  *    Added CONNECT destination port limitation check
  *
@@ -1380,6 +1384,9 @@ int main(int argc, const char *argv[])
 #endif /* def _WIN32 */
 
 
+   /* Initialize the CGI subsystem */
+   cgi_init_error_messages();
+
    listen_loop();
 
    /* NOTREACHED */