From e13f143ec6c46a1a540339d0a48940c6312ae8d9 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 11 Mar 1998 23:20:26 +0000 Subject: Missed fixes in NTDOM branch for doing readX via pipe IPC$. Allows long share lists to be browsed. Browsing *into* a long share name still fails, though. (Luke - you may need to look into this). Jeremy. (This used to be commit 5299d1b49f2bfd6cf84a687548904206f4a18a41) --- source3/smbd/reply.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source3/smbd/reply.c') diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 74cfd797c3..1415d95522 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -1954,6 +1954,10 @@ int reply_read_and_X(char *inbuf,char *outbuf,int length,int bufsize) cnum = SVAL(inbuf,smb_tid); + /* If it's an IPC, pass off the pipe handler. */ + if (IS_IPC(cnum)) + return reply_pipe_read_and_X(inbuf,outbuf,length,bufsize); + CHECK_FNUM(fnum,cnum); CHECK_READ(fnum); CHECK_ERROR(fnum); -- cgit