summaryrefslogtreecommitdiff
path: root/net-misc/connman-json-client/files/cjc-fix-for-json-0.14.patch
diff options
context:
space:
mode:
authorBen Kohler <bkohler@gentoo.org>2020-05-05 07:29:55 -0500
committerBen Kohler <bkohler@gentoo.org>2020-05-05 07:30:31 -0500
commit1202b6e7b9e4e4738c7994733fa33950fb990fd2 (patch)
treecca2478b3d3d961449dd4786b186ae2dbbac97f3 /net-misc/connman-json-client/files/cjc-fix-for-json-0.14.patch
parenta459b41dcc9e37d3178a7198a95fb610a38aa566 (diff)
downloadgentoo-1202b6e7b9e4e4738c7994733fa33950fb990fd2.tar.gz
gentoo-1202b6e7b9e4e4738c7994733fa33950fb990fd2.tar.bz2
gentoo-1202b6e7b9e4e4738c7994733fa33950fb990fd2.zip
net-misc/connman-json-client: add json-0.14 fix
Closes: https://bugs.gentoo.org/720446 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'net-misc/connman-json-client/files/cjc-fix-for-json-0.14.patch')
-rw-r--r--net-misc/connman-json-client/files/cjc-fix-for-json-0.14.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/net-misc/connman-json-client/files/cjc-fix-for-json-0.14.patch b/net-misc/connman-json-client/files/cjc-fix-for-json-0.14.patch
new file mode 100644
index 000000000000..5cc8d55f3247
--- /dev/null
+++ b/net-misc/connman-json-client/files/cjc-fix-for-json-0.14.patch
@@ -0,0 +1,33 @@
+diff -ur a/json_regex.c b/json_regex.c
+--- a/json_regex.c 2020-05-05 07:24:03.294949374 -0500
++++ b/json_regex.c 2020-05-05 07:24:38.883944012 -0500
+@@ -64,7 +64,7 @@
+ json_object_object_add(jregex_agent_response, "Username", json_object_new_string("^([[:print:]]*)$"));
+ json_object_object_add(jregex_agent_response, "Password", json_object_new_string("^([[:print:]]*)$"));
+
+- jregex_agent_retry_response = json_object_new_boolean(TRUE);
++ jregex_agent_retry_response = json_object_new_boolean(1);
+
+ // See commands.c __cmd_config_service for a better idea of the format.
+ jregex_config_service = json_object_new_object();
+@@ -94,7 +94,7 @@
+ json_object_array_add(arr, json_object_new_string("^([[:print:]]*)$"));
+ json_object_object_add(tmp, key_serv_proxy_excludes, arr);
+ json_object_object_add(opt, key_serv_proxy_config, tmp);
+- json_object_object_add(opt, key_serv_autoconnect, json_object_new_boolean(TRUE));
++ json_object_object_add(opt, key_serv_autoconnect, json_object_new_boolean(1));
+ arr = json_object_new_array();
+ json_object_array_add(arr, json_object_new_string("^([[:print:]]*)$"));
+ json_object_object_add(opt, key_serv_domains_config, arr);
+diff -ur a/json_utils.c b/json_utils.c
+--- a/json_utils.c 2020-05-05 07:24:03.294949374 -0500
++++ b/json_utils.c 2020-05-05 07:24:58.877379129 -0500
+@@ -83,7 +83,7 @@
+ key_is_trusted = json_object_object_get_ex(jtrusted, key,
+ &tmp_trusted);
+
+- if (key_is_trusted == FALSE)
++ if (key_is_trusted == 0)
+ return false;
+
+ res = __json_type_dispatch(val, tmp_trusted);