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 | 85f04fa61dffb15bc034dd756ee75b997a36d892 (patch) | |
tree | 1633267f91d30e145080a5107b2f26a0d9e2b713 /source/lib | |
parent | e76d27fcdb33df5212ca5b0ce53c77ed8ca58906 (diff) | |
download | samba-85f04fa61dffb15bc034dd756ee75b997a36d892.tar.gz samba-85f04fa61dffb15bc034dd756ee75b997a36d892.tar.xz samba-85f04fa61dffb15bc034dd756ee75b997a36d892.zip |
mark '.' as a valid character
Diffstat (limited to 'source/lib')
-rw-r--r-- | source/lib/util_unistr.c | 2 |
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; |