From: jongfoster Date: Sun, 14 Oct 2001 22:14:01 +0000 (+0000) Subject: Removing name_length field from struct cgi_dispatcher, as this is X-Git-Tag: v_2_9_10~129 X-Git-Url: http://www.privoxy.org/gitweb/?a=commitdiff_plain;h=17c4a468d07a191360bfbd1ea7f94ba7a639671e;p=privoxy.git Removing name_length field from struct cgi_dispatcher, as this is now calculated at runtime from the "name" field. --- diff --git a/project.h b/project.h index 25b68ddb..550d29d0 100644 --- a/project.h +++ b/project.h @@ -1,6 +1,6 @@ #ifndef PROJECT_H_INCLUDED #define PROJECT_H_INCLUDED -#define PROJECT_H_VERSION "$Id: project.h,v 1.35 2001/10/07 18:06:43 oes Exp $" +#define PROJECT_H_VERSION "$Id: project.h,v 1.36 2001/10/10 16:45:15 oes Exp $" /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/project.h,v $ @@ -36,6 +36,11 @@ * * Revisions : * $Log: project.h,v $ + * Revision 1.36 2001/10/10 16:45:15 oes + * Added LIMIT_CONNECT action and string + * Fixed HTTP message line termination + * Added CFORBIDDEN HTTP message + * * Revision 1.35 2001/10/07 18:06:43 oes * Added status member to struct http_request * @@ -680,7 +685,6 @@ struct parsers struct cgi_dispatcher { const char *name; - int name_length; int (*handler)(struct client_state *csp, struct http_response *rsp, struct map *parameters); const char *description; };