prevent source code corruption with static build (reported by Tino Keitel)
diff --git a/extensions/ebt_nflog.c b/extensions/ebt_nflog.c
index 23a0942..259bdb2 100644
--- a/extensions/ebt_nflog.c
+++ b/extensions/ebt_nflog.c
@@ -45,7 +45,7 @@
 	       "in-kernel queue\n");
 }
 
-static void nflog_init(struct ebt_entry_watcher *watcher)
+static void init(struct ebt_entry_watcher *watcher)
 {
 	struct ebt_nflog_info *info = (struct ebt_nflog_info *)watcher->data;
 
@@ -165,7 +165,7 @@
 	.name = "nflog",
 	.size = sizeof(struct ebt_nflog_info),
 	.help = nflog_help,
-	.init = nflog_init,
+	.init = init,
 	.parse = nflog_parse,
 	.final_check = nflog_final_check,
 	.print = nflog_print,