diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-11-04 18:10:31 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-11-04 18:10:31 +0000 |
commit | a896bbcb5a5be2cfb248d9e3ad01633c36a3e423 (patch) | |
tree | e36ed802cf44dffbff0f40acdb35ae9cdafa323d /source3/lib | |
parent | c42bdbdacec8f9d4fe14ffba6e14778b691a6ff2 (diff) | |
download | samba-a896bbcb5a5be2cfb248d9e3ad01633c36a3e423.tar.gz samba-a896bbcb5a5be2cfb248d9e3ad01633c36a3e423.tar.bz2 samba-a896bbcb5a5be2cfb248d9e3ad01633c36a3e423.zip |
remove {} from default valid char list
(This used to be commit 5dd3c7b3fb8aac7fb3a256ae40c882fb8983537f)
Diffstat (limited to 'source3/lib')
-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 7d690ecb9c..d0e2a119b8 100644 --- a/source3/lib/util_unistr.c +++ b/source3/lib/util_unistr.c @@ -63,7 +63,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<256;i++) valid_table[i] = isalnum(i) || strchr(allowed,i); |