summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-12-20 04:12:36 +0000
committerAndrew Tridgell <tridge@samba.org>2001-12-20 04:12:36 +0000
commit85f04fa61dffb15bc034dd756ee75b997a36d892 (patch)
tree1633267f91d30e145080a5107b2f26a0d9e2b713
parente76d27fcdb33df5212ca5b0ce53c77ed8ca58906 (diff)
downloadsamba-85f04fa61dffb15bc034dd756ee75b997a36d892.tar.gz
mark '.' as a valid character
-rw-r--r--source/lib/util_unistr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/util_unistr.c b/source/lib/util_unistr.c
index fc29ca8dc20..6034a715d31 100644
--- a/source/lib/util_unistr.c
+++ b/source/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;