diff options
author | Jeremy Allison <jra@samba.org> | 2008-08-13 15:46:35 -0700 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-08-14 11:22:47 +0200 |
commit | a5cf8b9fb5711dce8baf509e27396269e711dd07 (patch) | |
tree | 133b1437a2b492e7f15be8ffdb97b317fd675096 /source3/smbd | |
parent | b48ba00dc67cc7235a135615b0ee25245ac8474b (diff) | |
download | samba-a5cf8b9fb5711dce8baf509e27396269e711dd07.tar.gz |
Fix for bug #5617, reported and patched by Bartosz Antosik antosik@gmail.com.
xp/2003 explorer freezes browsing shares on samba ipv6 hosts. Caused by missing
reply packet to SMB printclose packet.
Jeremy
(This used to be commit ecf2b906f476e4a764d0e53eed84b9b75a2062c0)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/reply.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index d32d998da83..b3d691fbe7e 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -4702,6 +4702,8 @@ void reply_printclose(struct smb_request *req) return; } + reply_outbuf(req, 0, 0); + END_PROFILE(SMBsplclose); return; } |