[nft PATCH] json: Fix compile error

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Commit 9e45a28ca467f ("src: honor /etc/services") broke compiling with
JSON support enabled: inet_service_type_print() is not suited for
converting inet_service datatype into JSON at all.

In order to avoid having to replicate the port value resolving into
human-readable name in inet_service_type_json(), just return a numeric
value. At least for JSON output, this probably makes most sense either
way since the output is expected to be parsed by scripts which have an
easier time with numers than names anyway.

Fixes: 9e45a28ca467f ("src: honor /etc/services")
Signed-off-by: Phil Sutter <phil@xxxxxx>
---
Unless there are objections, I will later follow-up with a patch to
convert remaining human readable values into numeric ones in JSON
regardless of numeric output or not. This is just a quick fix to unbreak
the build.
---
 src/json.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/src/json.c b/src/json.c
index b70a53f29683d..00d247646cfe2 100644
--- a/src/json.c
+++ b/src/json.c
@@ -861,10 +861,7 @@ json_t *inet_protocol_type_json(const struct expr *expr,
 
 json_t *inet_service_type_json(const struct expr *expr, struct output_ctx *octx)
 {
-	if (octx->numeric >= NFT_NUMERIC_PORT)
-		return integer_type_json(expr, octx);
-
-	return inet_service_type_print(expr, octx);
+	return json_integer(ntohs(mpz_get_be16(expr->value)));
 }
 
 json_t *mark_type_json(const struct expr *expr, struct output_ctx *octx)
-- 
2.18.0




[Index of Archives]     [Netfitler Users]     [LARTC]     [Bugtraq]     [Yosemite Forum]

  Powered by Linux