]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3: smbd: Remove allow_broken_path parameter from parse_dfs_path().
authorJeremy Allison <jra@samba.org>
Thu, 11 Aug 2022 04:52:34 +0000 (21:52 -0700)
committerJeremy Allison <jra@samba.org>
Sun, 28 Aug 2022 19:59:28 +0000 (19:59 +0000)
Nothing now looks at it.

Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
source3/smbd/msdfs.c

index 988f6ee7ed5a73c050203fa33ece33bc36cdd5f2..0ee522c695c667c30d73519335c590a06b47e8a2 100644 (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);