prevent source code corruption with static build (reported by Tino Keitel)
[jleu-ebtables.git] / ebtables-standalone.c
blobd349d390ebdbb9aa922d83fe7fb75ab89c03c918
1 #include <string.h>
2 #include "include/ebtables_u.h"
4 static struct ebt_u_replace replace;
5 void ebt_early_init_once();
7 int main(int argc, char *argv[])
9 ebt_silent = 0;
10 ebt_early_init_once();
11 strcpy(replace.name, "filter");
12 do_command(argc, argv, EXEC_STYLE_PRG, &replace);
13 return 0;