summaryrefslogtreecommitdiffstats
path: root/server/man
diff options
context:
space:
mode:
authorsbose <sbose@sles10.site>2009-09-09 12:10:53 +0200
committerStephen Gallagher <sgallagh@redhat.com>2009-09-09 09:14:25 -0400
commiteb5b5d56fbe3f1319ae8be8554d3a51c4900e5da (patch)
treee2f2267149ceed50bbec958114219892cff1ce72 /server/man
parent191b97b118b0c357209166c3c374dec33560ed3a (diff)
downloadsssd-eb5b5d56fbe3f1319ae8be8554d3a51c4900e5da.tar.gz
sssd-eb5b5d56fbe3f1319ae8be8554d3a51c4900e5da.tar.xz
sssd-eb5b5d56fbe3f1319ae8be8554d3a51c4900e5da.zip
more fixes for older libpcre versions
- older version of libpcre only support the Python syntax (?P<name>) for named subpatterns
Diffstat (limited to 'server/man')
-rw-r--r--server/man/sssd.conf.5.xml7
1 files changed, 6 insertions, 1 deletions
diff --git a/server/man/sssd.conf.5.xml b/server/man/sssd.conf.5.xml
index f4cb87a18..b64899a0e 100644
--- a/server/man/sssd.conf.5.xml
+++ b/server/man/sssd.conf.5.xml
@@ -133,7 +133,7 @@
containing user name and domain into these components.
</para>
<para>
- Default: <quote>(?&lt;name&gt;[^@]+)@?(?&lt;domain&gt;[^@]*$)</quote>
+ Default: <quote>(?P&lt;name&gt;[^@]+)@?(?P&lt;domain&gt;[^@]*$)</quote>
which translates to "the name is everything up to the
<quote>@</quote> sign, the domain everything after that"
</para>
@@ -144,6 +144,11 @@
libpcre version 7 or higher can support non-unique
named subpatterns.
</para>
+ <para>
+ PLEASE NOTE ALSO: older version of libpcre only
+ support the Python syntax (?P&lt;name&gt;) to label
+ subpatterns.
+ </para>
</listitem>
</varlistentry>
<varlistentry>