From: Jan Engelhardt Date: Fri, 23 Oct 2009 23:30:28 +0000 (+0200) Subject: realm: remove static initializations X-Git-Tag: v1.4.6~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a0fbe37a9879ade6a6bf99ab105316284eb4102;p=thirdparty%2Fiptables.git realm: remove static initializations Save a little disk space, they are initialized to zero anyway. Signed-off-by: Jan Engelhardt --- diff --git a/extensions/libipt_realm.c b/extensions/libipt_realm.c index c9e17601..be1943ed 100644 --- a/extensions/libipt_realm.c +++ b/extensions/libipt_realm.c @@ -35,10 +35,9 @@ struct realmname { }; /* array of realms from /etc/iproute2/rt_realms */ -static struct realmname *realms = NULL; +static struct realmname *realms; /* 1 if loading failed */ -static int rdberr = 0; - +static int rdberr; static void load_realms(void) {