summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1997-10-12 03:49:29 +0000
committerAndrew Tridgell <tridge@samba.org>1997-10-12 03:49:29 +0000
commit732aff735b996a3804ea4d3ca29b4b5f1302d663 (patch)
tree4f5934fe863e333f712a39f2501415e0e8b18fd4
parentbbbe907cc41ad25a9c013d2254384b399f7c36d7 (diff)
downloadsamba-732aff735b996a3804ea4d3ca29b4b5f1302d663.tar.gz
remove { and } from the list of illegal characters in filenames. The
CIFS3 spec does not list them as illegal. This allows things like the control panel icon to be placed on a Samba drive.
-rw-r--r--source/smbd/mangle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/mangle.c b/source/smbd/mangle.c
index a964f4a5c73..66e8233df28 100644
--- a/source/smbd/mangle.c
+++ b/source/smbd/mangle.c
@@ -602,7 +602,7 @@ static BOOL illegal_name(char *name)
unsigned char *s;
if (!initialised) {
- char *ill = "*\\/?<>|\":{}";
+ char *ill = "*\\/?<>|\":";
initialised = True;
bzero((char *)illegal,256);