diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2016-07-13 16:45:52 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2016-07-13 16:54:10 +0200 |
commit | 4ce18f9e8470a6b982a888b98e60040c1be4cb5c (patch) | |
tree | f8cf29efd1d832e5ea91410b498f095f3f4dd193 /src | |
parent | b65a70131d0d38844be12235270eebaa9d2f5a4d (diff) |
parser_bison: fix typo in symbol redefinition error reporting
"redefinition" instead of "redfinition".
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/parser_bison.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser_bison.y b/src/parser_bison.y index d946e0e0..6a029d1c 100644 --- a/src/parser_bison.y +++ b/src/parser_bison.y @@ -635,7 +635,7 @@ common_block : INCLUDE QUOTED_STRING stmt_seperator struct scope *scope = current_scope(state); if (symbol_lookup(scope, $2) != NULL) { - erec_queue(error(&@2, "redfinition of symbol '%s'", $2), + erec_queue(error(&@2, "redefinition of symbol '%s'", $2), state->msgs); YYERROR; } |