From f2f55d703d0dd549a83809d3e5cc5151569b48d6 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 27 Jun 2005 22:53:56 +0000 Subject: r7963: Add aio support to 3.0. Jeremy. (This used to be commit 1de27da47051af08790317f5b48b02719d6b9934) --- source3/smbd/trans2.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source3/smbd/trans2.c') diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index 5bf53fca8a..d4daf1fd69 100644 --- a/source3/smbd/trans2.c +++ b/source3/smbd/trans2.c @@ -591,6 +591,7 @@ static int send_trans2_replies(char *outbuf, /* If there genuinely are no parameters or data to send just send the empty packet */ if(params_to_send == 0 && data_to_send == 0) { + show_msg(outbuf); if (!send_smb(smbd_server_fd(),outbuf)) exit_server("send_trans2_replies: send_smb failed."); return 0; @@ -685,6 +686,7 @@ static int send_trans2_replies(char *outbuf, params_to_send, data_to_send, paramsize, datasize)); /* Send the packet */ + show_msg(outbuf); if (!send_smb(smbd_server_fd(),outbuf)) exit_server("send_trans2_replies: send_smb failed."); @@ -4912,6 +4914,7 @@ int reply_trans2(connection_struct *conn, of the parameter/data bytes */ outsize = set_message(outbuf,0,0,True); srv_signing_trans_stop(); + show_msg(outbuf); if (!send_smb(smbd_server_fd(),outbuf)) exit_server("reply_trans2: send_smb failed."); -- cgit