mirror of
https://github.com/samba-team/samba.git
synced 2025-08-04 08:22:08 +03:00
s3:libsmb: get rid of cli_state_server_time_zone
Signed-off-by: Luk Claes <luk@debian.org> Signed-off-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
committed by
Stefan Metzmacher
parent
278ba9928a
commit
1ff8c404a6
@ -640,13 +640,13 @@ NTSTATUS cli_qpathinfo1_recv(struct tevent_req *req,
|
||||
}
|
||||
|
||||
if (change_time) {
|
||||
*change_time = date_fn(state->data+0, cli_state_server_time_zone(state->cli));
|
||||
*change_time = date_fn(state->data+0, smb1cli_conn_server_time_zone(state->cli->conn));
|
||||
}
|
||||
if (access_time) {
|
||||
*access_time = date_fn(state->data+4, cli_state_server_time_zone(state->cli));
|
||||
*access_time = date_fn(state->data+4, smb1cli_conn_server_time_zone(state->cli->conn));
|
||||
}
|
||||
if (write_time) {
|
||||
*write_time = date_fn(state->data+8, cli_state_server_time_zone(state->cli));
|
||||
*write_time = date_fn(state->data+8, smb1cli_conn_server_time_zone(state->cli->conn));
|
||||
}
|
||||
if (size) {
|
||||
*size = IVAL(state->data, 12);
|
||||
|
Reference in New Issue
Block a user