summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-08-18 11:34:54 +0200
committerStefan Metzmacher <metze@samba.org>2009-08-27 16:45:40 +0200
commit09fe57923ab5570aad106b6b82faabe3fcd130fd (patch)
tree07c175e1a489e337fe167bd3bc02371ccbee7db4 /source3/smbd
parente91d5dbed05f364d155ff8b91ddf5af718fb1462 (diff)
downloadsamba-09fe57923ab5570aad106b6b82faabe3fcd130fd.tar.gz
samba-09fe57923ab5570aad106b6b82faabe3fcd130fd.tar.bz2
samba-09fe57923ab5570aad106b6b82faabe3fcd130fd.zip
s3:streams: check for :$DATA only in the backend (fix bug #6642)
We need to allow "\\$Extend\\$Quota:$Q:$INDEX_ALLOCATION" to pass check_path(), so that the Quota Dialog works. metze
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/reply.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c
index 7b290a6b0e..bdc71c2404 100644
--- a/source3/smbd/reply.c
+++ b/source3/smbd/reply.c
@@ -65,9 +65,6 @@ static NTSTATUS check_path_syntax_internal(char *path,
if (strchr_m(&s[1], ':')) {
return NT_STATUS_OBJECT_NAME_INVALID;
}
- if (StrCaseCmp(s, ":$DATA") != 0) {
- return NT_STATUS_INVALID_PARAMETER;
- }
break;
}
}