aboutsummaryrefslogtreecommitdiffstats
path: root/sharkd_session.c
diff options
context:
space:
mode:
Diffstat (limited to 'sharkd_session.c')
-rw-r--r--sharkd_session.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sharkd_session.c b/sharkd_session.c
index 3ef89e1832..3c88feba80 100644
--- a/sharkd_session.c
+++ b/sharkd_session.c
@@ -603,7 +603,7 @@ json_prep(char* buf, const jsmntok_t* tokens, int count)
}
else if (name_array[j].type == JSMN_PRIMITIVE && name_array[j].value_type == SHARKD_JSON_BOOLEAN)
{
- if (!strcmp(attr_value, "true") && !strcmp(attr_value, "false"))
+ if (strcmp(attr_value, "true") && strcmp(attr_value, "false"))
{
sharkd_json_error(
rpcid, -32600, NULL,