1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-24 21:49:29 +03:00

mark '.' as a valid character

(This used to be commit 85f04fa61d)
This commit is contained in:
Andrew Tridgell
2001-12-20 04:12:36 +00:00
parent cc0846f967
commit 6c0146f74b

View File

@ -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;