X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=actions.c;h=967a974023c7a6f5f4d377db809f6a0c5a9a1faa;hb=128c2ef4e4f39e5e634a094582e5431ee0c45771;hp=7dc34781d519f576e2d4c45331b9ea688bc71bf7;hpb=5732158c08e8ca58a787a4baecea762c35b7d0ff;p=privoxy.git diff --git a/actions.c b/actions.c index 7dc34781..967a9740 100644 --- a/actions.c +++ b/actions.c @@ -1,4 +1,4 @@ -const char actions_rcs[] = "$Id: actions.c,v 1.52 2008/04/27 16:26:59 fabiankeil Exp $"; +const char actions_rcs[] = "$Id: actions.c,v 1.54 2008/09/20 10:04:33 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/actions.c,v $ @@ -33,6 +33,13 @@ const char actions_rcs[] = "$Id: actions.c,v 1.52 2008/04/27 16:26:59 fabiankeil * * Revisions : * $Log: actions.c,v $ + * Revision 1.54 2008/09/20 10:04:33 fabiankeil + * Remove hide-forwarded-for-headers action which has + * been obsoleted by change-x-forwarded-for{block}. + * + * Revision 1.53 2008/05/26 16:04:04 fabiankeil + * s@memorey@memory@ + * * Revision 1.52 2008/04/27 16:26:59 fabiankeil * White space fix for the last commit. * @@ -680,7 +687,7 @@ static int action_used_to_be_valid(const char *action) "vanilla-wafer", "wafer" }; - int i; + unsigned int i; for (i = 0; i < SZ(formerly_valid_actions); i++) { @@ -867,11 +874,17 @@ jb_err get_actions(char *line, /* Found it */ merge_actions(cur_action, alias->action); } - else if ((2 < strlen(option)) && action_used_to_be_valid(option+1)) + else if (((size_t)2 < strlen(option)) && action_used_to_be_valid(option+1)) { log_error(LOG_LEVEL_ERROR, "Action '%s' is no longer valid " "in this Privoxy release. Ignored.", option+1); } + else if (((size_t)2 < strlen(option)) && 0 == strcmpic(option+1, "hide-forwarded-for-headers")) + { + log_error(LOG_LEVEL_FATAL, "The action 'hide-forwarded-for-headers' " + "is no longer valid in this Privoxy release. " + "Use 'change-x-forwarded-for' instead."); + } else { /* Bad action name */ @@ -1344,7 +1357,7 @@ static int load_one_actions_file(struct client_state *csp, int fileid) size_t len = strlen(buf); char * start = buf + 2; char * end = buf + len - 1; - if ((len < 5) || (*end-- != '}') || (*end-- != '}')) + if ((len < (size_t)5) || (*end-- != '}') || (*end-- != '}')) { /* too short */ fclose(fp);