From d51c1e333b1df1ae1a5523864b3ded1172f5bd4b Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 21 Oct 2002 03:40:18 +0000 Subject: a space is a standard valid character in a filename (This used to be commit 0db79d4a379a502362c230a9019d5d71f5af8e0e) --- source3/lib/util_unistr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit