X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=parsers.c;h=50539f061b486e45d4ba185223bc238c9884770e;hb=89f16d4ceacb511d3b008a1234cfd63d1522ffab;hp=8b0a8911b7537d0392818a2a006e35d3917713da;hpb=a7c60ebfa31570ad116b7777c0e24b2b86a46599;p=privoxy.git diff --git a/parsers.c b/parsers.c index 8b0a8911..50539f06 100644 --- a/parsers.c +++ b/parsers.c @@ -1,4 +1,4 @@ -const char parsers_rcs[] = "$Id: parsers.c,v 1.25 2001/09/16 13:21:27 jongfoster Exp $"; +const char parsers_rcs[] = "$Id: parsers.c,v 1.26 2001/09/16 17:05:14 jongfoster Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/parsers.c,v $ @@ -41,6 +41,9 @@ const char parsers_rcs[] = "$Id: parsers.c,v 1.25 2001/09/16 13:21:27 jongfoster * * Revisions : * $Log: parsers.c,v $ + * Revision 1.26 2001/09/16 17:05:14 jongfoster + * Removing unused #include showarg.h + * * Revision 1.25 2001/09/16 13:21:27 jongfoster * Changes to use new list functions. * @@ -781,9 +784,9 @@ char *content_length(const struct parsers *v, const char *s, struct client_state if (csp->content_length != 0) /* Content has been modified */ { char * s2 = (char *) zalloc(100); - sprintf(s2, "Content-Length: %d", csp->content_length); + sprintf(s2, "Content-Length: %d", (int) csp->content_length); - log_error(LOG_LEVEL_HEADER, "Adjust Content-Length to %d", csp->content_length); + log_error(LOG_LEVEL_HEADER, "Adjust Content-Length to %d", (int) csp->content_length); return(s2); } else @@ -870,13 +873,13 @@ char *client_referrer(const struct parsers *v, const char *s, struct client_stat /* * We have a specific (fixed) referer we want to send. */ - char * s2; + char * s3; log_error(LOG_LEVEL_HEADER, "modified"); - s2 = strsav( NULL, "Referer: " ); - s2 = strsav( s2, newval ); - return(s2); + s3 = strsav( NULL, "Referer: " ); + s3 = strsav( s3, newval ); + return(s3); } /* Should never get here! */