summaryrefslogtreecommitdiff
path: root/source3/smbd/trans2.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-11-05 00:02:38 +0000
committerTim Potter <tpot@samba.org>2001-11-05 00:02:38 +0000
commitd876260d885ad991526544756609ea38e4867028 (patch)
treec46bb453539dfb988b7217f1e65b2656867c3a70 /source3/smbd/trans2.c
parent59bc781854d623235149eb329fd5c3b89e10501a (diff)
downloadsamba-d876260d885ad991526544756609ea38e4867028.tar.gz
samba-d876260d885ad991526544756609ea38e4867028.tar.bz2
samba-d876260d885ad991526544756609ea38e4867028.zip
Don't put a \n on the end of the arg to exit_server()
(This used to be commit dfb8566220c3e90ca2b757ea124f53aed103269e)
Diffstat (limited to 'source3/smbd/trans2.c')
-rw-r--r--source3/smbd/trans2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c
index 9b0fd379cf..a5a54751c3 100644
--- a/source3/smbd/trans2.c
+++ b/source3/smbd/trans2.c
@@ -65,7 +65,7 @@ static int send_trans2_replies(char *outbuf, int bufsize, char *params,
if(params_to_send == 0 && data_to_send == 0)
{
if (!send_smb(smbd_server_fd(),outbuf))
- exit_server("send_trans2_replies: send_smb failed.\n");
+ exit_server("send_trans2_replies: send_smb failed.");
return 0;
}
@@ -161,7 +161,7 @@ static int send_trans2_replies(char *outbuf, int bufsize, char *params,
/* Send the packet */
if (!send_smb(smbd_server_fd(),outbuf))
- exit_server("send_trans2_replies: send_smb failed.\n");
+ exit_server("send_trans2_replies: send_smb failed.");
pp += params_sent_thistime;
pd += data_sent_thistime;
@@ -2489,7 +2489,7 @@ int reply_trans2(connection_struct *conn,
of the parameter/data bytes */
outsize = set_message(outbuf,0,0,True);
if (!send_smb(smbd_server_fd(),outbuf))
- exit_server("reply_trans2: send_smb failed.\n");
+ exit_server("reply_trans2: send_smb failed.");
while (num_data_sofar < total_data ||
num_params_sofar < total_params) {