diff options
author | Pavel Machek <pavel@ucw.cz> | 1999-01-15 19:13:55 +0100 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 1999-01-15 19:13:55 +0100 |
commit | ca3d562b24d5a3e303ab00d276496fb38b7382ee (patch) | |
tree | 0c857200e5c1b52664e998310c7c29b476adcb8e /filter | |
parent | c9b6670608577521c883db4bccd75b871568b7f7 (diff) | |
download | bird-ca3d562b24d5a3e303ab00d276496fb38b7382ee.tar bird-ca3d562b24d5a3e303ab00d276496fb38b7382ee.zip |
filters_init() renamed to filters_postconfig().
Diffstat (limited to 'filter')
-rw-r--r-- | filter/f-util.c | 2 | ||||
-rw-r--r-- | filter/filter.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/filter/f-util.c b/filter/f-util.c index df6babb..65b8b52 100644 --- a/filter/f-util.c +++ b/filter/f-util.c @@ -56,7 +56,7 @@ interpret(struct f_instruction *what) } void -filters_init(void) +filters_postconfig(void) { if (!last_func) printf( "No function defined\n" ); diff --git a/filter/filter.h b/filter/filter.h index 499be0a..09cd7a2 100644 --- a/filter/filter.h +++ b/filter/filter.h @@ -18,4 +18,6 @@ struct f_instruction { void *arg1, *arg2; }; +void filters_postconfig(void); + #endif |