iptables plugin: Initialize ip_version.
authorDoug MacEachern <dougm@hyperic.com>
Tue, 5 May 2009 07:37:00 +0000 (09:37 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Tue, 5 May 2009 07:37:00 +0000 (09:37 +0200)
iptables.c: In function 'iptables_config':
iptables.c:99: warning: 'ip_version' is used uninitialized in this function

Signed-off-by: Florian Forster <octo@leeloo.lan.home.verplant.org>
src/iptables.c

index fb887da..3062a0c 100644 (file)
@@ -89,7 +89,7 @@ static int chain_num = 0;
 static int iptables_config (const char *key, const char *value)
 {
        /* int ip_value; */
-       protocol_version_t ip_version;
+       protocol_version_t ip_version = 0;
 
        if (strcasecmp (key, "Chain") == 0)
                ip_version = IPV4;