From 6e7142ba6c79c9c6f3ce299b6c7dd476cc229e6b Mon Sep 17 00:00:00 2001 From: Ralph Boehme Date: Tue, 2 Feb 2021 15:54:02 +0100 Subject: [PATCH] net: remove NT_STATUS_STOPPED_ON_SYMLINK status code check from openat_pathref_fsp() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- source3/utils/net_vfs.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/source3/utils/net_vfs.c b/source3/utils/net_vfs.c index 62be0a44ca2..73eda3e5cda 100644 --- a/source3/utils/net_vfs.c +++ b/source3/utils/net_vfs.c @@ -243,9 +243,6 @@ static int net_vfs_get_ntacl(struct net_context *net, } status = openat_pathref_fsp(state.conn_tos->conn->cwd_fsp, smb_fname); - if (NT_STATUS_EQUAL(status, NT_STATUS_STOPPED_ON_SYMLINK)) { - status = NT_STATUS_OBJECT_NAME_NOT_FOUND; - } if (!NT_STATUS_IS_OK(status)) { DBG_ERR("openat_pathref_fsp [%s] failed: %s\n", smb_fname_str_dbg(smb_fname), nt_errstr(status)); -- 2.47.3