summaryrefslogtreecommitdiff
path: root/source3/smbd/reply.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-03-11 23:20:26 +0000
committerJeremy Allison <jra@samba.org>1998-03-11 23:20:26 +0000
commite13f143ec6c46a1a540339d0a48940c6312ae8d9 (patch)
tree2f78d9ac3c9229d61b44956beb8cefcd1c95a273 /source3/smbd/reply.c
parentfdeea341ed1bae670382e45eb731db1b5838ad21 (diff)
downloadsamba-e13f143ec6c46a1a540339d0a48940c6312ae8d9.tar.gz
samba-e13f143ec6c46a1a540339d0a48940c6312ae8d9.tar.bz2
samba-e13f143ec6c46a1a540339d0a48940c6312ae8d9.zip
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)
Diffstat (limited to 'source3/smbd/reply.c')
-rw-r--r--source3/smbd/reply.c4
1 files changed, 4 insertions, 0 deletions
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);