diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-11-02 16:10:12 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-11-02 16:10:12 +0100 |
commit | 323dd35f9f347951d88130597a98e0a8da72d388 (patch) | |
tree | 6957c2cce86f3a9e71189355215944e6cc9f6b8c /src/config.y | |
parent | 01aaf17ea9eda174c7471b7529654cc41f7af5d0 (diff) | |
download | fastd-323dd35f9f347951d88130597a98e0a8da72d388.tar fastd-323dd35f9f347951d88130597a98e0a8da72d388.zip |
Change error message for methods from `invalid' to `unsupported'
Diffstat (limited to 'src/config.y')
-rw-r--r-- | src/config.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.y b/src/config.y index ca2d8de..4efbde5 100644 --- a/src/config.y +++ b/src/config.y @@ -342,7 +342,7 @@ mode: TOK_TAP { conf->mode = MODE_TAP; } protocol: TOK_STRING { if (!fastd_config_protocol(ctx, conf, $1->str)) { - fastd_config_error(&@$, ctx, conf, filename, depth, "invalid protocol"); + fastd_config_error(&@$, ctx, conf, filename, depth, "unsupported protocol"); YYERROR; } } @@ -350,7 +350,7 @@ protocol: TOK_STRING { method: TOK_STRING { if (!fastd_config_method(ctx, conf, $1->str)) { - fastd_config_error(&@$, ctx, conf, filename, depth, "invalid method"); + fastd_config_error(&@$, ctx, conf, filename, depth, "unsupported method"); YYERROR; } } |