From b4ef754715a8dcb67341f30e0c7f06d18c3ebf00 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 18 Oct 1998 19:30:26 +0000 Subject: [PATCH] check for lp_nt_pipe_support() in open calls (This used to be commit 44d901b3e040a520c4ad9089e68c566c78acacca) --- source3/smbd/nttrans.c | 2 +- source3/smbd/reply.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c index 758c46a6cd0..128a234304e 100644 --- a/source3/smbd/nttrans.c +++ b/source3/smbd/nttrans.c @@ -491,7 +491,7 @@ int reply_ntcreate_and_X(connection_struct *conn, /* If it's an IPC, use the pipe handler. */ - if (IS_IPC(conn)) { + if (IS_IPC(conn) && lp_nt_pipe_support()) { int ret = nt_open_pipe(fname, conn, inbuf, outbuf, &pnum); if(ret != 0) diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 5afc4593e6a..d801ce4a630 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -1353,7 +1353,7 @@ int reply_open_and_X(connection_struct *conn, char *inbuf,char *outbuf,int lengt files_struct *fsp; /* If it's an IPC, pass off the pipe handler. */ - if (IS_IPC(conn)) + if (IS_IPC(conn) && lp_nt_pipe_support()) return reply_open_pipe_and_X(conn, inbuf,outbuf,length,bufsize); /* XXXX we need to handle passed times, sattr and flags */ -- 2.34.1