diff options
author | Andrew Tridgell <tridge@samba.org> | 1997-10-12 03:48:47 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1997-10-12 03:48:47 +0000 |
commit | d2ac9e6fb6e76778154c58217237251d7bb0e98c (patch) | |
tree | b6d37978c79655db8918fe3e1d1b4a90df2c9454 /source/smbd | |
parent | 1e2fe7c0db0386cb6a007b11ceae53d04e9b8658 (diff) | |
download | samba-d2ac9e6fb6e76778154c58217237251d7bb0e98c.tar.gz samba-d2ac9e6fb6e76778154c58217237251d7bb0e98c.tar.xz samba-d2ac9e6fb6e76778154c58217237251d7bb0e98c.zip |
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.
Diffstat (limited to 'source/smbd')
-rw-r--r-- | source/smbd/mangle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/mangle.c b/source/smbd/mangle.c index b0a45ffb47c..829e307a85b 100644 --- a/source/smbd/mangle.c +++ b/source/smbd/mangle.c @@ -613,7 +613,7 @@ static BOOL illegal_name(char *name) if (!initialised) { - char *ill = "*\\/?<>|\":{}"; + char *ill = "*\\/?<>|\":"; initialised = True; bzero((char *)illegal,256); |