1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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);
|