diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-04-12 08:22:50 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-04-12 08:22:50 +0000 |
commit | f435873a6cb4fdc70de66cebd684f124aa9eed83 (patch) | |
tree | db91239454b6b9624e4fe9b966bcfe7ad2ecd686 /source3 | |
parent | b78a3886a7674cb310fdd8e61fad4386a24af652 (diff) | |
download | samba-f435873a6cb4fdc70de66cebd684f124aa9eed83.tar.gz samba-f435873a6cb4fdc70de66cebd684f124aa9eed83.tar.bz2 samba-f435873a6cb4fdc70de66cebd684f124aa9eed83.zip |
Remove : from the list seperators, as this is used to seperate out components
in the passdb module selection (after the : you have the options).
Andrew Bartlett
(This used to be commit 6949b630f10ebb76e8e59ca7e832f53571f2c20a)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/include/local.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/local.h b/source3/include/local.h index 1ecd63738e..24f3fa7724 100644 --- a/source3/include/local.h +++ b/source3/include/local.h @@ -77,7 +77,7 @@ #define MAX_PASS_LEN 200 /* separators for lists */ -#define LIST_SEP " \t,;:\n\r" +#define LIST_SEP " \t,;\n\r" /* wchar separators for lists */ #define LIST_SEP_W wchar_list_sep |