1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

3 branches might become a pain... :-)

Volker
(This used to be commit 8ecfed59a3)
This commit is contained in:
Volker Lendecke 2002-04-14 12:20:10 +00:00
parent 4023a61892
commit 492ab172d4
2 changed files with 15 additions and 2 deletions

View File

@ -8078,8 +8078,12 @@ veto files = /.AppleDouble/.bin/.AppleDesktop/Network Trash Folder/
and <filename>nss_winbind.so</filename> modules for UNIX services.
</para>
<para>Example: <command>winbind separator = \</command></para>
<para>Example: <command>winbind separator = +</command></para>
<para>Please note that setting this parameter to + causes problems
with group membership at least on glibc systems, as the character +
is used as a special character for NIS in /etc/group.</para>
<para>Example: <command>winbind separator = \\</command></para>
<para>Example: <command>winbind separator = /</command></para>
</listitem>
</varlistentry>

View File

@ -152,6 +152,15 @@ via the %%o substitution. With encrypted passwords this is not possible.\n", lp_
}
}
if (strlen(lp_winbind_separator()) != 1) {
printf("ERROR: the 'winbind separator' parameter must be a single character.\n");
ret = 1;
}
if (*lp_winbind_separator() == '+') {
printf("'winbind separator = +' might cause problems with group membership.\n");
}
return ret;
}