1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

s3: smbd: Remove allow_broken_path parameter from parse_dfs_path().

Nothing now looks at it.

Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
This commit is contained in:
Jeremy Allison 2022-08-10 21:52:34 -07:00
parent 5f0efdfe3c
commit 3c18b27888

View File

@ -241,7 +241,6 @@ out:
static NTSTATUS parse_dfs_path(TALLOC_CTX *ctx,
connection_struct *conn,
const char *pathname,
bool allow_broken_path,
char **_hostname,
char **_servicename,
char **_remaining_path)
@ -1143,7 +1142,6 @@ NTSTATUS dfs_filename_convert(TALLOC_CTX *ctx,
status = parse_dfs_path(ctx,
conn,
dfs_path_in,
!conn->sconn->using_smb2,
NULL, /* hostname */
NULL, /* servicename */
&reqpath);