Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
varnish-cache
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
varnishcache
varnish-cache
Commits
4a923840
Commit
4a923840
authored
Jul 19, 2021
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Silence FlexeLint
parent
0012ea92
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
vmod_blob.c
vmod/vmod_blob.c
+4
-1
No files found.
vmod/vmod_blob.c
View file @
4a923840
...
...
@@ -117,7 +117,10 @@ static char empty[1] = { '\0' };
static
enum
encoding
parse_encoding
(
VCL_ENUM
e
)
{
#define VMODENUM(n) if (e == VENUM(n)) return (n);
#define VMODENUM(n) \
do { \
if (e == VENUM(n)) return (n); \
} while (0);
#include "vmod_blob_tbl_encodings.h"
WRONG
(
"illegal encoding enum"
);
}
...
...
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