X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=actions.c;h=a66c4645da41204eba6bca21291b8d646a99837a;hb=af4000fd934222b7b6043cdd4e19f5ddc2ce99ab;hp=bbb1cb951f2df1e9bfc4a768e7cf119721f57159;hpb=f9e3ed614837f323a6db60a2c4eb87465ad0e1a2;p=privoxy.git diff --git a/actions.c b/actions.c index bbb1cb95..a66c4645 100644 --- a/actions.c +++ b/actions.c @@ -1,4 +1,4 @@ -const char actions_rcs[] = "$Id: actions.c,v 1.50 2008/03/30 14:52:00 fabiankeil Exp $"; +const char actions_rcs[] = "$Id: actions.c,v 1.53 2008/05/26 16:04:04 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/actions.c,v $ @@ -33,6 +33,15 @@ const char actions_rcs[] = "$Id: actions.c,v 1.50 2008/03/30 14:52:00 fabiankeil * * Revisions : * $Log: actions.c,v $ + * 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". @@ -760,9 +769,9 @@ jb_err get_actions(char *line, * XXX: should include line number. */ value = "No reason specified."; - log_error(LOG_LEVEL_ERROR, "block action without " - "reason found. This may become a fatal error" - "in future versions."); + log_error(LOG_LEVEL_ERROR, + "block action without reason found. This may " + "become a fatal error in future versions."); } else { @@ -866,6 +875,12 @@ jb_err get_actions(char *line, log_error(LOG_LEVEL_ERROR, "Action '%s' is no longer valid " "in this Privoxy release. Ignored.", option+1); } + else if ((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 */ @@ -1079,7 +1094,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;