From ff85d2a1630b78c1e78bb886c1675167a0e9ee35 Mon Sep 17 00:00:00 2001 From: linus Date: Tue, 16 Mar 2010 11:34:12 +0000 Subject: =?UTF-8?q?Fix=20two=20regex=20examples=20using=20back=20reference?= =?UTF-8?q?s.=20=20Spotted=20by=20Kolbj=C3=B8rn=20Barmen.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@518 e88ac4ed-0b26-0410-9574-a7f39faa03bf --- radsecproxy.conf.5 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radsecproxy.conf.5 b/radsecproxy.conf.5 index a22576e..e385c95 100644 --- a/radsecproxy.conf.5 +++ b/radsecproxy.conf.5 @@ -304,7 +304,7 @@ the request sent by the proxy. The User-Name attribute is written back to the original value if a matching response is later sent back to the client. The value must be of the form User-Name:/regexpmatch/replacement/. Example usage: .RS -rewriteAttribute User-Name:/^(.*)@local$/$1@example.com/ +rewriteAttribute User-Name:/^(.*)@local$/\\1@example.com/ .RE .SH "SERVER BLOCK" The server block is used to configure a server. That is, tell the proxy about a @@ -544,7 +544,7 @@ attributes. The value must be of the form a numerical attribute type, regexpmatch is regexp matching rule and replacement specifies how to replace the matching regexp. Example usage: .RS -modifyAttribute 1:/^(.*)@local$/$1@example.com/ +modifyAttribute 1:/^(.*)@local$/\\1@example.com/ .RE .SH "SEE ALSO" \fBradsecproxy\fR(1), -- cgit v1.1