summaryrefslogtreecommitdiff
blob: c0ff5ded937dcc85233600c120080a7deccc3de6 (plain)
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/src/json_regex.c b/src/json_regex.c
--- a/src/json_regex.c	2020-05-05 06:50:49.643196630 -0500
+++ b/src/json_regex.c	2020-05-05 06:59:32.722322215 -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/src/json_utils.c b/src/json_utils.c
--- a/src/json_utils.c	2020-05-05 06:50:49.643196630 -0500
+++ b/src/json_utils.c	2020-05-05 06:59:46.140940810 -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 == 1)
 			return false;
 
 		res = __json_type_dispatch(val, tmp_trusted);