mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
s3:smbd: restore the 3.0.x bahavior of send_nt_replies()
We should also set the error code, when we return no parameters or data. metze
This commit is contained in:
parent
f62a331045
commit
d73bc83c19
@ -68,6 +68,11 @@ void send_nt_replies(connection_struct *conn,
|
||||
|
||||
if(params_to_send == 0 && data_to_send == 0) {
|
||||
reply_outbuf(req, 18, 0);
|
||||
if (NT_STATUS_V(nt_error)) {
|
||||
error_packet_set((char *)req->outbuf,
|
||||
0, 0, nt_error,
|
||||
__LINE__,__FILE__);
|
||||
}
|
||||
show_msg((char *)req->outbuf);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user