diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-10-21 03:40:18 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-10-21 03:40:18 +0000 |
commit | d51c1e333b1df1ae1a5523864b3ded1172f5bd4b (patch) | |
tree | aab44f31605f040a9c4f7ae5550dd26f1d0a3ce6 /source3/lib | |
parent | 47cf2825f8ffa6327c7b392542403c5db6ad91f1 (diff) | |
download | samba-d51c1e333b1df1ae1a5523864b3ded1172f5bd4b.tar.gz samba-d51c1e333b1df1ae1a5523864b3ded1172f5bd4b.tar.bz2 samba-d51c1e333b1df1ae1a5523864b3ded1172f5bd4b.zip |
a space is a standard valid character in a filename
(This used to be commit 0db79d4a379a502362c230a9019d5d71f5af8e0e)
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 eb47252413..01367ba699 100644 --- a/source3/lib/util_unistr.c +++ b/source3/lib/util_unistr.c @@ -103,7 +103,7 @@ void init_valid_table(void) static int initialised; static int mapped_file; int i; - const char *allowed = ".!#$%&'()_-@^`~"; + const char *allowed = ".!#$%&'()_-@^`~ "; if (initialised && mapped_file) return; initialised = 1; |