summaryrefslogtreecommitdiff
path: root/source3/lib/util_unistr.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-11-04 18:10:31 +0000
committerAndrew Tridgell <tridge@samba.org>2001-11-04 18:10:31 +0000
commita896bbcb5a5be2cfb248d9e3ad01633c36a3e423 (patch)
treee36ed802cf44dffbff0f40acdb35ae9cdafa323d /source3/lib/util_unistr.c
parentc42bdbdacec8f9d4fe14ffba6e14778b691a6ff2 (diff)
downloadsamba-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/util_unistr.c')
-rw-r--r--source3/lib/util_unistr.c2
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);