Added call to initialize the (statically-allocated of course)
authorjongfoster <jongfoster@users.sourceforge.net>
Tue, 23 Oct 2001 21:41:35 +0000 (21:41 +0000)
committerjongfoster <jongfoster@users.sourceforge.net>
Tue, 23 Oct 2001 21:41:35 +0000 (21:41 +0000)
"out of memory" CGI response.

jcc.c

diff --git a/jcc.c b/jcc.c
index 7c09830..44f9398 100644 (file)
--- 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 */