From: Fabian Keil <fk@fabiankeil.de>
Date: Tue, 8 Mar 2011 18:30:46 +0000 (+0000)
Subject: In a fatal error message in load_one_actions_file(), cover both URL and TAG patterns
X-Git-Tag: v_3_0_18~305
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/faq/@default-cgi@/developer-manual/static/coding.html?a=commitdiff_plain;h=462e9291c08ad0d47c30f9be7fdf8f36f591b732;p=privoxy.git

In a fatal error message in load_one_actions_file(), cover both URL and TAG patterns
---

diff --git a/actions.c b/actions.c
index 833e711d..4ffaa575 100644
--- a/actions.c
+++ b/actions.c
@@ -1,4 +1,4 @@
-const char actions_rcs[] = "$Id: actions.c,v 1.65 2011/03/03 14:39:34 fabiankeil Exp $";
+const char actions_rcs[] = "$Id: actions.c,v 1.66 2011/03/03 14:39:57 fabiankeil Exp $";
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/actions.c,v $
@@ -1448,7 +1448,7 @@ static int load_one_actions_file(struct client_state *csp, int fileid)
          {
             fclose(fp);
             log_error(LOG_LEVEL_FATAL,
-               "can't load actions file '%s': line %lu: cannot create URL pattern from: %s",
+               "can't load actions file '%s': line %lu: cannot create URL or TAG pattern from: %s",
                csp->config->actions_file[fileid], linenum, buf);
             return 1; /* never get here */
          }