From: Fabian Keil <fk@fabiankeil.de>
Date: Sun, 22 May 2011 10:21:54 +0000 (+0000)
Subject: Change a ssplit() call to use SZ(array) as the third parameter instead of the hardcoded 3
X-Git-Tag: v_3_0_18~229
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/@default-cgi@/user-manual/faq/static/@default-cgi@show-url-info?a=commitdiff_plain;h=852619ffa475b7860d7beb0aec340c64df974e8a;p=privoxy.git

Change a ssplit() call to use SZ(array) as the third parameter instead of the hardcoded 3

Silences a clang complaint now that the ssplit() prototype has been fixed.
---

diff --git a/actions.c b/actions.c
index d1930827..ca8e78a3 100644
--- a/actions.c
+++ b/actions.c
@@ -1,4 +1,4 @@
-const char actions_rcs[] = "$Id: actions.c,v 1.67 2011/03/08 18:30:46 fabiankeil Exp $";
+const char actions_rcs[] = "$Id: actions.c,v 1.68 2011/04/19 13:00:47 fabiankeil Exp $";
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/actions.c,v $
@@ -1319,7 +1319,7 @@ static int load_one_actions_file(struct client_state *csp, int fileid)
                return 1; /* never get here */
             }
             
-            num_fields = ssplit(version_string, ".", fields, 3, TRUE, FALSE);
+            num_fields = ssplit(version_string, ".", fields, SZ(fields), TRUE, FALSE);
 
             if (num_fields < 1 || atoi(fields[0]) == 0)
             {