diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-02-06 08:16:18 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:09:34 -0500 |
commit | 4559bc77961083f185c5aff62cc51610ac27c7e0 (patch) | |
tree | 44c128499cf1cd990ecdabc956cc4659372becb1 /source4/include | |
parent | 0628d5fdeb9b21aae9f9e6980fb24d76062abd91 (diff) | |
download | samba-4559bc77961083f185c5aff62cc51610ac27c7e0.tar.gz samba-4559bc77961083f185c5aff62cc51610ac27c7e0.tar.bz2 samba-4559bc77961083f185c5aff62cc51610ac27c7e0.zip |
r5249: don't include ';' in the default list separators for parsing
smb.conf. It was rarely (if ever?) used, and poses problems as it is
not multi-byte safe for character searches
(This used to be commit 75a6cfb2f6b4ef85cf7e49958cccae9d35c4e5a2)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/local.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/include/local.h b/source4/include/local.h index 7723e6cedd..ae17f576bd 100644 --- a/source4/include/local.h +++ b/source4/include/local.h @@ -47,7 +47,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 |