Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libvmod-j
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
uplex-varnish
libvmod-j
Commits
6ba8eb70
Unverified
Commit
6ba8eb70
authored
Sep 08, 2023
by
Nils Goroll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove useless negation
parent
4f503911
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
vmod_j.c
src/vmod_j.c
+3
-3
No files found.
src/vmod_j.c
View file @
6ba8eb70
...
...
@@ -373,10 +373,10 @@ vmod_string(VRT_CTX, VCL_STRANDS s, VCL_ENUM esc)
static
void
vsbjvalue
(
struct
vsb
*
vsb
,
const
char
*
p
)
{
if
(
!
(
is_J
(
p
)
||
is_jnumber
(
p
)
||
is_jlit
(
p
)))
vsbjstring
(
vsb
,
p
);
else
if
(
is_J
(
p
)
||
is_jnumber
(
p
)
||
is_jlit
(
p
))
(
void
)
VSB_bcat
(
vsb
,
p
,
(
ssize_t
)
strlen
(
p
));
else
vsbjstring
(
vsb
,
p
);
}
VCL_STRING
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment