Remove useless negation

parent 4f503911
...@@ -373,10 +373,10 @@ vmod_string(VRT_CTX, VCL_STRANDS s, VCL_ENUM esc) ...@@ -373,10 +373,10 @@ vmod_string(VRT_CTX, VCL_STRANDS s, VCL_ENUM esc)
static void static void
vsbjvalue(struct vsb *vsb, const char *p) vsbjvalue(struct vsb *vsb, const char *p)
{ {
if (! (is_J(p) || is_jnumber(p) || is_jlit(p))) if (is_J(p) || is_jnumber(p) || is_jlit(p))
vsbjstring(vsb, p);
else
(void) VSB_bcat(vsb, p, (ssize_t)strlen(p)); (void) VSB_bcat(vsb, p, (ssize_t)strlen(p));
else
vsbjstring(vsb, p);
} }
VCL_STRING VCL_STRING
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment