summaryrefslogtreecommitdiff
path: root/source3/smbd/pipes.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-08-27 12:04:09 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:30:14 -0500
commitb578db69e91a088f158c1cd78a71d00045fc1da6 (patch)
tree451e7a0ecef178982d0a2b93af1fe8a16cece33a /source3/smbd/pipes.c
parent5b9ecb5ae3fbbe10260312608f1a175e683347fe (diff)
downloadsamba-b578db69e91a088f158c1cd78a71d00045fc1da6.tar.gz
samba-b578db69e91a088f158c1cd78a71d00045fc1da6.tar.bz2
samba-b578db69e91a088f158c1cd78a71d00045fc1da6.zip
r24702: Remove the old API pointers
(This used to be commit 17df313db42199e26d7d2044f6a1d845aacd1a90)
Diffstat (limited to 'source3/smbd/pipes.c')
-rw-r--r--source3/smbd/pipes.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/smbd/pipes.c b/source3/smbd/pipes.c
index e8a496ffa7..f43e243453 100644
--- a/source3/smbd/pipes.c
+++ b/source3/smbd/pipes.c
@@ -130,7 +130,7 @@ void reply_open_pipe_and_X(connection_struct *conn, struct smb_request *req)
SSVAL(req->outbuf,smb_vwv8,rmode);
SSVAL(req->outbuf,smb_vwv11,0x0001);
- chain_reply_new(req);
+ chain_reply(req);
return;
}
@@ -244,7 +244,7 @@ void reply_pipe_write_and_X(struct smb_request *req)
DEBUG(3,("writeX-IPC pnum=%04x nwritten=%d\n", p->pnum, nwritten));
- chain_reply_new(req);
+ chain_reply(req);
}
/****************************************************************************
@@ -294,7 +294,7 @@ void reply_pipe_read_and_X(struct smb_request *req)
DEBUG(3,("readX-IPC pnum=%04x min=%d max=%d nread=%d\n",
p->pnum, smb_mincnt, smb_maxcnt, nread));
- chain_reply_new(req);
+ chain_reply(req);
}
/****************************************************************************