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:
parent
f9321ed7dd
commit
a9186829eb
@ -933,7 +933,6 @@ bool disk_quotas(connection_struct *conn, struct smb_filename *fname,
|
||||
/* The following definitions come from smbd/reply.c */
|
||||
|
||||
NTSTATUS check_path_syntax(char *path);
|
||||
NTSTATUS check_path_syntax_wcard(char *path, bool *p_contains_wcard);
|
||||
NTSTATUS check_path_syntax_posix(char *path);
|
||||
size_t srvstr_get_path(TALLOC_CTX *ctx,
|
||||
const char *inbuf,
|
||||
|
@ -232,17 +232,6 @@ NTSTATUS check_path_syntax(char *path)
|
||||
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.
|
||||
We're assuming here that '/' is not the second byte in any multibyte char
|
||||
|
Loading…
Reference in New Issue
Block a user