Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libvmod-re
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-re
Commits
76e1a4d4
Commit
76e1a4d4
authored
Oct 01, 2014
by
Geoff Simmons
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compile with -Werror, and bump version to v0.2 (last version for Varnish 3)
parent
ccc2a125
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
README.rst
README.rst
+3
-1
configure.ac
configure.ac
+1
-1
vmod_re.c
src/vmod_re.c
+2
-1
No files found.
README.rst
View file @
76e1a4d4
...
...
@@ -9,7 +9,7 @@ Varnish Module for Regular Expression Matching with Subexpression Capture
:Manual section: 3
:Author: Geoffrey Simmons
:Date: 2013-09-28
:Version: 0.
1
:Version: 0.
2
SYNOPSIS
========
...
...
@@ -182,6 +182,8 @@ HISTORY
Version 0.1: Initial version
Version 0.2: various fixes, last version compatible with Varnish 3
LIMITATIONS
===========
...
...
configure.ac
View file @
76e1a4d4
AC_PREREQ(2.59)
AC_COPYRIGHT([Copyright (c) 2013 UPLEX Nils Goroll Systemoptimierung])
AC_INIT([libvmod-
header], [0.1
])
AC_INIT([libvmod-
re], [0.2
])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR(src/vmod_re.vcc)
AM_CONFIG_HEADER(config.h)
...
...
src/vmod_re.c
View file @
76e1a4d4
...
...
@@ -157,11 +157,12 @@ get_ov(struct sess *sp, struct vmod_priv *priv_vcl, const int init)
* of varnish3)
*/
if
((
ov
->
xid
!=
sp
->
xid
)
||
(
ov
->
ws
!=
sp
->
ws
))
if
((
ov
->
xid
!=
sp
->
xid
)
||
(
ov
->
ws
!=
sp
->
ws
))
{
if
(
init
==
0
)
return
NULL
;
else
init_ov
(
ov
,
sp
);
}
return
(
ov
);
}
...
...
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