From: Jeremy Allison Date: Thu, 11 Aug 2022 04:52:34 +0000 (-0700) Subject: s3: smbd: Remove allow_broken_path parameter from parse_dfs_path(). X-Git-Tag: talloc-2.4.0~1243 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3c18b27888de30c91dce6f38339f0bc3dfb12d3c;p=thirdparty%2Fsamba.git s3: smbd: Remove allow_broken_path parameter from parse_dfs_path(). Nothing now looks at it. Signed-off-by: Jeremy Allison Reviewed-by: Ralph Boehme --- diff --git a/source3/smbd/msdfs.c b/source3/smbd/msdfs.c index 988f6ee7ed5..0ee522c695c 100644 --- a/source3/smbd/msdfs.c +++ b/source3/smbd/msdfs.c @@ -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);