31 lines
939 B
Diff
31 lines
939 B
Diff
From 300edcfbb357ef1785b5a16424952fcd06146cb3 Mon Sep 17 00:00:00 2001
|
|
From: Phil Sutter <phil@nwl.cc>
|
|
Date: Wed, 13 Sep 2023 20:44:19 +0200
|
|
Subject: [PATCH] parser_json: Fix typo in json_parse_cmd_add_object()
|
|
|
|
A case of bad c'n'p in the fixed commit broke ct timeout objects
|
|
parsing.
|
|
|
|
Fixes: c7a5401943df8 ("parser_json: Fix for ineffective family value checks")
|
|
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
|
---
|
|
src/parser_json.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/parser_json.c b/src/parser_json.c
|
|
index 9532f7be..da056814 100644
|
|
--- a/src/parser_json.c
|
|
+++ b/src/parser_json.c
|
|
@@ -3570,7 +3570,7 @@ static struct cmd *json_parse_cmd_add_object(struct json_ctx *ctx,
|
|
obj_free(obj);
|
|
return NULL;
|
|
}
|
|
- obj->ct_helper.l3proto = l3proto;
|
|
+ obj->ct_timeout.l3proto = l3proto;
|
|
|
|
init_list_head(&obj->ct_timeout.timeout_list);
|
|
if (json_parse_ct_timeout_policy(ctx, root, obj)) {
|
|
--
|
|
2.33.0
|
|
|