diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-07-19 18:29:30 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-07-19 18:29:30 +0200 |
commit | ca648e7a3b76d71817b38d5bc7d765fc994f40ab (patch) | |
tree | 9f737855220c1f5a978d5207ddebe73a9c8ba93a /src/config.c | |
parent | 1812a63c043b219277441bae1f36a99a5b7b5899 (diff) | |
download | fastd-ca648e7a3b76d71817b38d5bc7d765fc994f40ab.tar fastd-ca648e7a3b76d71817b38d5bc7d765fc994f40ab.zip |
Generalize float attribute, deprecate old float syntax
Diffstat (limited to 'src/config.c')
-rw-r--r-- | src/config.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/config.c b/src/config.c index 23f23cf..95e22db 100644 --- a/src/config.c +++ b/src/config.c @@ -546,6 +546,9 @@ static void count_peers(fastd_context_t *ctx, fastd_config_t *conf) { default: exit_bug(ctx, "invalid peer address family"); } + + if (peer->dynamic_float_deprecated) + pr_warn(ctx, "peer `%s' uses deprecated float syntax, please update your configuration", peer->name); } } @@ -917,7 +920,7 @@ void fastd_configure(fastd_context_t *ctx, fastd_config_t *conf, int argc, char func(ctx, conf); \ continue; \ } -#define OPTION_ARG(func, options, arg, message) \ +#define OPTION_ARG(func, options, arg, message) \ if(config_match(argv[i], options, NULL)) { \ i+=2; \ if (i > argc) \ |