1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-23 06:50:21 +03:00

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.
(This used to be commit d2ac9e6fb6e76778154c58217237251d7bb0e98c)
This commit is contained in:
Andrew Tridgell 1997-10-12 03:48:47 +00:00
parent 13ff49eedc
commit b6dd030b45

View File

@ -613,7 +613,7 @@ static BOOL illegal_name(char *name)
if (!initialised)
{
char *ill = "*\\/?<>|\":{}";
char *ill = "*\\/?<>|\":";
initialised = True;
bzero((char *)illegal,256);