diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-12-20 04:12:36 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-12-20 04:12:36 +0000 |
commit | 6c0146f74b13770509989c0057fe02bf1d5b4f7c (patch) | |
tree | 40bb5b7d1d24d568c97d07eefde0ca339d9bb8ab | |
parent | cc0846f967f268764bff280f64d5cb47b716d796 (diff) | |
download | samba-6c0146f74b13770509989c0057fe02bf1d5b4f7c.tar.gz samba-6c0146f74b13770509989c0057fe02bf1d5b4f7c.tar.bz2 samba-6c0146f74b13770509989c0057fe02bf1d5b4f7c.zip |
mark '.' as a valid character
(This used to be commit 85f04fa61dffb15bc034dd756ee75b997a36d892)
-rw-r--r-- | source3/lib/util_unistr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_unistr.c b/source3/lib/util_unistr.c index fc29ca8dc2..6034a715d3 100644 --- a/source3/lib/util_unistr.c +++ b/source3/lib/util_unistr.c @@ -64,7 +64,7 @@ void load_case_tables(void) } if (!valid_table) { - const char *allowed = "!#$%&'()_-@^`~"; + const char *allowed = ".!#$%&'()_-@^`~"; DEBUG(1,("creating lame valid table\n")); valid_table = malloc(0x10000); for (i=0;i<0x10000;i++) valid_table[i] = 0; |