X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=actions.c;h=967a974023c7a6f5f4d377db809f6a0c5a9a1faa;hp=7de2fef8c359d0328659f3908c042e4eb1c9ba54;hb=46efa6f8fea119c9671cd61aa2e29b2a3f2ad75c;hpb=41a08949498020a8f9ec18c08e16141057ebd546 diff --git a/actions.c b/actions.c index 7de2fef8..967a9740 100644 --- a/actions.c +++ b/actions.c @@ -1,4 +1,4 @@ -const char actions_rcs[] = "$Id: actions.c,v 1.48 2008/03/28 18:17:14 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,26 @@ const char actions_rcs[] = "$Id: actions.c,v 1.48 2008/03/28 18:17:14 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. + * + * Revision 1.51 2008/04/27 16:20:19 fabiankeil + * Complain about every block action without reason found. + * + * Revision 1.50 2008/03/30 14:52:00 fabiankeil + * Rename load_actions_file() and load_re_filterfile() + * as they load multiple files "now". + * + * Revision 1.49 2008/03/29 12:13:45 fabiankeil + * Remove send-wafer and send-vanilla-wafer actions. + * * Revision 1.48 2008/03/28 18:17:14 fabiankeil * In action_used_to_be_valid(), loop through an array of formerly * valid actions instead of using an OR-chain of strcmpic() calls. @@ -667,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++) { @@ -750,16 +770,12 @@ jb_err get_actions(char *line, { /* * XXX: Temporary backwards compatibility hack. + * XXX: should include line number. */ - static int complaint_shown = 0; value = "No reason specified."; - if (!complaint_shown) - { - log_error(LOG_LEVEL_ERROR, "At least one block " - "without reason found. This may become a fatal " - "error in future versions."); - complaint_shown = 1; - } + log_error(LOG_LEVEL_ERROR, + "block action without reason found. This may " + "become a fatal error in future versions."); } else { @@ -858,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 */ @@ -1076,7 +1098,7 @@ int update_action_bits_for_tag(struct client_state *csp, const char *tag) if (merge_current_action(csp->action, b->action)) { log_error(LOG_LEVEL_ERROR, - "Out of memorey while changing action bits"); + "Out of memory while changing action bits"); } /* and signal the change. */ updated = 1; @@ -1219,7 +1241,7 @@ void free_alias_list(struct action_alias *alias_list) /********************************************************************* * - * Function : load_actions_file + * Function : load_action_files * * Description : Read and parse all the action files and add to files * list. @@ -1230,7 +1252,7 @@ void free_alias_list(struct action_alias *alias_list) * Returns : 0 => Ok, everything else is an error. * *********************************************************************/ -int load_actions_file(struct client_state *csp) +int load_action_files(struct client_state *csp) { int i; int result; @@ -1335,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);