| Bart De Schuymer | 6622a01 | 2005-01-19 21:09:05 +0000 | [diff] [blame] | 1 | #include <string.h> |
| 2 | #include "include/ebtables_u.h" | ||||
| 3 | |||||
| 4 | static struct ebt_u_replace replace; | ||||
| 5 | void ebt_early_init_once(); | ||||
| 6 | |||||
| 7 | int main(int argc, char *argv[]) | ||||
| 8 | { | ||||
| 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; | ||||
| 14 | } | ||||