From 3c18b27888de30c91dce6f38339f0bc3dfb12d3c Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 10 Aug 2022 21:52:34 -0700 Subject: [PATCH] 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 --- source3/smbd/msdfs.c | 2 -- 1 file changed, 2 deletions(-) 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); -- 2.11.4.GIT