diff options
author | Fernando Fernandez Mancera <ffmancera@riseup.net> | 2019-07-18 11:41:14 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2019-07-18 12:34:36 +0200 |
commit | 87b20c663e963853fa304acb2e9c30d39ca1426e (patch) | |
tree | 683d6b45dadb9f314401e4294227e7ee1c62042f /include | |
parent | 585be42f5f9e5d3322e309ae6f84cc641b5927c5 (diff) |
include: json: add missing synproxy stmt print stub
statement.c:930:11: error: ‘synproxy_stmt_json’ undeclared here (not in a function); did you mean ‘tproxy_stmt_json’?
.json = synproxy_stmt_json,
^~~~~~~~~~~~~~~~~~
tproxy_stmt_json
Fixes: 1188a69604c3 ("src: introduce SYNPROXY matching")
Signed-off-by: Fernando Fernandez Mancera <ffmancera@riseup.net>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/json.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/json.h b/include/json.h index ce57c9f7..7f2df7c8 100644 --- a/include/json.h +++ b/include/json.h @@ -180,6 +180,7 @@ STMT_PRINT_STUB(queue) STMT_PRINT_STUB(verdict) STMT_PRINT_STUB(connlimit) STMT_PRINT_STUB(tproxy) +STMT_PRINT_STUB(synproxy) #undef STMT_PRINT_STUB #undef EXPR_PRINT_STUB |