From 09fe57923ab5570aad106b6b82faabe3fcd130fd Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 18 Aug 2009 11:34:54 +0200 Subject: 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 --- source3/modules/onefs_streams.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source3/modules/onefs_streams.c') diff --git a/source3/modules/onefs_streams.c b/source3/modules/onefs_streams.c index 66eda57a34..da2666130c 100644 --- a/source3/modules/onefs_streams.c +++ b/source3/modules/onefs_streams.c @@ -55,6 +55,9 @@ NTSTATUS onefs_stream_prep_smb_fname(TALLOC_CTX *ctx, /* Strip off the :$DATA if one exists. */ str_tmp = strrchr_m(stream_name, ':'); if (str_tmp) { + if (StrCaseCmp(str_tmp, ":$DATA") != 0) { + return NT_STATUS_INVALID_PARAMETER; + } str_tmp[0] = '\0'; } } -- cgit