summaryrefslogtreecommitdiff
path: root/source3/smbd/ipc.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/ipc.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/ipc.c')
-rw-r--r--source3/smbd/ipc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/smbd/ipc.c b/source3/smbd/ipc.c
index 93a69255c0..4047ffa8d7 100644
--- a/source3/smbd/ipc.c
+++ b/source3/smbd/ipc.c
@@ -118,7 +118,7 @@ void send_trans_reply(char *outbuf,
show_msg(outbuf);
if (!send_smb(smbd_server_fd(),outbuf))
- exit_server("send_trans_reply: send_smb failed.\n");
+ exit_server("send_trans_reply: send_smb failed.");
tot_data_sent = this_ldata;
tot_param_sent = this_lparam;
@@ -152,7 +152,7 @@ void send_trans_reply(char *outbuf,
show_msg(outbuf);
if (!send_smb(smbd_server_fd(),outbuf))
- exit_server("send_trans_reply: send_smb failed.\n");
+ exit_server("send_trans_reply: send_smb failed.");
tot_data_sent += this_ldata;
tot_param_sent += this_lparam;
@@ -377,7 +377,7 @@ int reply_trans(connection_struct *conn, char *inbuf,char *outbuf, int size, int
srvstr_pull(inbuf, name, smb_buf(inbuf), sizeof(name), -1, STR_TERMINATE);
if (dscnt > tdscnt || pscnt > tpscnt) {
- exit_server("invalid trans parameters\n");
+ exit_server("invalid trans parameters");
}
if (tdscnt) {
@@ -416,7 +416,7 @@ int reply_trans(connection_struct *conn, char *inbuf,char *outbuf, int size, int
outsize = set_message(outbuf,0,0,True);
show_msg(outbuf);
if (!send_smb(smbd_server_fd(),outbuf))
- exit_server("reply_trans: send_smb failed.\n");
+ exit_server("reply_trans: send_smb failed.");
}
/* receive the rest of the trans packet */
@@ -457,7 +457,7 @@ int reply_trans(connection_struct *conn, char *inbuf,char *outbuf, int size, int
dscnt += dcnt;
if (dscnt > tdscnt || pscnt > tpscnt) {
- exit_server("invalid trans parameters\n");
+ exit_server("invalid trans parameters");
}
if (pcnt)