X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=cgisimple.c;h=3d184ec86aa24ecc96946df3d8da2d362f64b391;hb=7629bc44c1537497c2b33bef1332b9fedb7a83d7;hp=62ba94ef659bc492b048a17d8dbb099268767f87;hpb=40c03e553b2df08fac2dfd5e7529dd02e081fe01;p=privoxy.git diff --git a/cgisimple.c b/cgisimple.c index 62ba94ef..3d184ec8 100644 --- a/cgisimple.c +++ b/cgisimple.c @@ -1,4 +1,4 @@ -const char cgisimple_rcs[] = "$Id: cgisimple.c,v 1.89 2008/10/11 11:31:14 fabiankeil Exp $"; +const char cgisimple_rcs[] = "$Id: cgisimple.c,v 1.90 2009/03/01 18:43:09 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/cgisimple.c,v $ @@ -36,6 +36,9 @@ const char cgisimple_rcs[] = "$Id: cgisimple.c,v 1.89 2008/10/11 11:31:14 fabian * * Revisions : * $Log: cgisimple.c,v $ + * Revision 1.90 2009/03/01 18:43:09 fabiankeil + * Fix cparser warnings. + * * Revision 1.89 2008/10/11 11:31:14 fabiankeil * Add FEATURE_CONNECTION_KEEP_ALIVE to the list * of conditional defines on the show-status page. @@ -2225,7 +2228,7 @@ static jb_err cgi_show_file(struct client_state *csp, static jb_err load_file(const char *filename, char **buffer, size_t *length) { FILE *fp; - int ret; + long ret; jb_err err = JB_ERR_OK; fp = fopen(filename, "rb");