From: jongfoster <jongfoster@users.sourceforge.net>
Date: Sun, 14 Oct 2001 22:28:41 +0000 (+0000)
Subject: Fixing stupid typo.
X-Git-Tag: v_2_9_10~127
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/faq/@default-cgi@/@default-cgi@toggle?a=commitdiff_plain;h=ad7a58bcbb04eb45481066ba961aca2512774e67;p=privoxy.git

Fixing stupid typo.
---

diff --git a/cgi.c b/cgi.c
index b3ae1410..f0e8b405 100644
--- a/cgi.c
+++ b/cgi.c
@@ -1,4 +1,4 @@
-const char cgi_rcs[] = "$Id: cgi.c,v 1.31 2001/10/10 10:56:39 oes Exp $";
+const char cgi_rcs[] = "$Id: cgi.c,v 1.32 2001/10/14 22:20:18 jongfoster Exp $";
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/cgi.c,v $
@@ -38,6 +38,14 @@ const char cgi_rcs[] = "$Id: cgi.c,v 1.31 2001/10/10 10:56:39 oes Exp $";
  *
  * Revisions   :
  *    $Log: cgi.c,v $
+ *    Revision 1.32  2001/10/14 22:20:18  jongfoster
+ *    - Changes to CGI dispatching method to match CGI names exactly,
+ *      rather than doing a prefix match.
+ *    - No longer need to count the length of the CGI handler names by hand.
+ *    - Adding new handler for 404 error when disptching a CGI, if none of
+ *      the handlers match.
+ *    - Adding new handlers for CGI actionsfile editor.
+ *
  *    Revision 1.31  2001/10/10 10:56:39  oes
  *    Failiure to load template now fatal. Before, the user got a hard-to-understand assertion failure from cgi.c
  *
@@ -372,7 +380,7 @@ struct http_response *dispatch_cgi(struct client_state *csp)
     * This is a CGI call.
     */
 
-   return dispatch_cgi_2(csp, path);
+   return dispatch_known_cgi(csp, path);
 }