1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

s3: smbd: Remove unused check_path_syntax_wcard().

Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>

Autobuild-User(master): Ralph Böhme <slow@samba.org>
Autobuild-Date(master): Wed Sep 30 22:08:01 UTC 2020 on sn-devel-184
This commit is contained in:
Jeremy Allison 2020-09-29 17:18:59 -07:00 committed by Ralph Boehme
parent f9321ed7dd
commit a9186829eb
2 changed files with 0 additions and 12 deletions

View File

@ -933,7 +933,6 @@ bool disk_quotas(connection_struct *conn, struct smb_filename *fname,
/* The following definitions come from smbd/reply.c */ /* The following definitions come from smbd/reply.c */
NTSTATUS check_path_syntax(char *path); NTSTATUS check_path_syntax(char *path);
NTSTATUS check_path_syntax_wcard(char *path, bool *p_contains_wcard);
NTSTATUS check_path_syntax_posix(char *path); NTSTATUS check_path_syntax_posix(char *path);
size_t srvstr_get_path(TALLOC_CTX *ctx, size_t srvstr_get_path(TALLOC_CTX *ctx,
const char *inbuf, const char *inbuf,

View File

@ -232,17 +232,6 @@ NTSTATUS check_path_syntax(char *path)
return check_path_syntax_internal(path, False, &ignore); return check_path_syntax_internal(path, False, &ignore);
} }
/****************************************************************************
Ensure we check the path in *exactly* the same way as W2K for regular pathnames.
Wildcards allowed - p_contains_wcard returns true if the last component contained
a wildcard.
****************************************************************************/
NTSTATUS check_path_syntax_wcard(char *path, bool *p_contains_wcard)
{
return check_path_syntax_internal(path, False, p_contains_wcard);
}
/**************************************************************************** /****************************************************************************
Check the path for a POSIX client. Check the path for a POSIX client.
We're assuming here that '/' is not the second byte in any multibyte char We're assuming here that '/' is not the second byte in any multibyte char