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

smbd: Remove "st" from struct open_symlink_err

Since c96010a2a9 nobody reads it anymore

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Volker Lendecke 2024-02-04 17:27:50 +01:00 committed by Andreas Schneider
parent 331a49ca39
commit 8ca649025a
2 changed files with 0 additions and 4 deletions

View File

@ -1310,8 +1310,6 @@ next:
len = talloc_get_size(path);
symlink_err->unparsed = len - parsed;
symlink_err->st = dirfsp->fsp_name->st;
status = NT_STATUS_STOPPED_ON_SYMLINK;
goto fail;
}
@ -1395,7 +1393,6 @@ done:
if (!NT_STATUS_IS_OK(status)) {
return status;
}
symlink_err->st = fsp->fsp_name->st;
status = NT_STATUS_STOPPED_ON_SYMLINK;
goto fail;

View File

@ -378,7 +378,6 @@ NTSTATUS open_stream_pathref_fsp(
struct smb_filename *smb_fname);
struct open_symlink_err {
struct stat_ex st;
size_t unparsed;
struct reparse_data_buffer *reparse;
};