summaryrefslogtreecommitdiff
path: root/source3/smbd/reply.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2008-08-13 15:46:35 -0700
committerMichael Adam <obnox@samba.org>2008-08-14 11:22:47 +0200
commita5cf8b9fb5711dce8baf509e27396269e711dd07 (patch)
tree133b1437a2b492e7f15be8ffdb97b317fd675096 /source3/smbd/reply.c
parentb48ba00dc67cc7235a135615b0ee25245ac8474b (diff)
downloadsamba-a5cf8b9fb5711dce8baf509e27396269e711dd07.tar.gz
samba-a5cf8b9fb5711dce8baf509e27396269e711dd07.tar.bz2
samba-a5cf8b9fb5711dce8baf509e27396269e711dd07.zip
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/reply.c')
-rw-r--r--source3/smbd/reply.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c
index d32d998da8..b3d691fbe7 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;
}