From f83d2da1f9879494406fb65651ca7dbf88a89193 Mon Sep 17 00:00:00 2001 From: linus Date: Tue, 16 Mar 2010 11:58:11 +0000 Subject: =?UTF-8?q?Fix=20regex=20example=20using=20back=20references.=20?= =?UTF-8?q?=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@520 e88ac4ed-0b26-0410-9574-a7f39faa03bf --- radsecproxy.conf.5.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'radsecproxy.conf.5.xml') diff --git a/radsecproxy.conf.5.xml b/radsecproxy.conf.5.xml index a7f50c5..aa90dd2 100644 --- a/radsecproxy.conf.5.xml +++ b/radsecproxy.conf.5.xml @@ -427,7 +427,7 @@ 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:
-rewriteAttribute User-Name:/^(.*)@local$/$1@example.com/ +rewriteAttribute User-Name:/^(.*)@local$/\1@example.com/
@@ -711,7 +711,7 @@ a numerical attribute type, regexpmatch is regexp matching rule and replacement specifies how to replace the matching regexp. Example usage:
-modifyAttribute 1:/^(.*)@local$/$1@example.com/ +modifyAttribute 1:/^(.*)@local$/\1@example.com/
-- cgit v1.1