1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-23 06:50:21 +03:00

s3: smbd: Rename srv_cancel_sign_response() -> smb1_srv_cancel_sign_response().

Signed-off-by: Jeremy Allison <jra@samba.org>
Signed-off-by: David Mulder <dmulder@samba.org>
This commit is contained in:
Jeremy Allison 2022-03-07 19:45:19 -08:00 committed by David Mulder
parent fa9c48ae4d
commit ed64884895
3 changed files with 3 additions and 3 deletions

View File

@ -1530,7 +1530,7 @@ void reply_ntcancel(struct smb_request *req)
*/
START_PROFILE(SMBntcancel);
srv_cancel_sign_response(xconn);
smb1_srv_cancel_sign_response(xconn);
found = remove_pending_change_notify_requests_by_mid(sconn, req->mid);
if (!found) {
smbd_smb1_brl_finish_by_mid(sconn, req->mid);

View File

@ -56,7 +56,7 @@ bool smb1_srv_check_sign_mac(struct smbXsrv_connection *conn,
const char *inbuf, uint32_t *seqnum, bool trusted_channel);
NTSTATUS smb1_srv_calculate_sign_mac(struct smbXsrv_connection *conn,
char *outbuf, uint32_t seqnum);
void srv_cancel_sign_response(struct smbXsrv_connection *conn);
void smb1_srv_cancel_sign_response(struct smbXsrv_connection *conn);
bool srv_init_signing(struct smbXsrv_connection *conn);
void srv_set_signing_negotiated(struct smbXsrv_connection *conn,
bool allowed, bool mandatory);

View File

@ -99,7 +99,7 @@ NTSTATUS smb1_srv_calculate_sign_mac(struct smbXsrv_connection *conn,
/***********************************************************
Called to indicate a oneway request
************************************************************/
void srv_cancel_sign_response(struct smbXsrv_connection *conn)
void smb1_srv_cancel_sign_response(struct smbXsrv_connection *conn)
{
smb1_signing_cancel_reply(conn->smb1.signing_state, true);
}