diff options
author | Volker Lendecke <vl@samba.org> | 2010-08-14 23:12:46 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-08-16 22:39:17 +0200 |
commit | 0e12c216dcf2fccccd6b38dfbe532bfa2593ae79 (patch) | |
tree | 164f0ccad17bd9146449acc3f93e2f94da2e1ffe /source3 | |
parent | 7a1c32c98a7b536fd1478f33c2e56cc2522d7eba (diff) | |
download | samba-0e12c216dcf2fccccd6b38dfbe532bfa2593ae79.tar.gz samba-0e12c216dcf2fccccd6b38dfbe532bfa2593ae79.tar.bz2 samba-0e12c216dcf2fccccd6b38dfbe532bfa2593ae79.zip |
s3: Remove smbd_server_fd from reply_special
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index ed6d3bc902..5fe8403e39 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -573,7 +573,7 @@ void reply_special(struct smbd_server_connection *sconn, char *inbuf) DEBUG(5,("init msg_type=0x%x msg_flags=0x%x\n", msg_type, msg_flags)); - srv_send_smb(smbd_server_fd(), outbuf, false, 0, false, NULL); + srv_send_smb(sconn->sock, outbuf, false, 0, false, NULL); return; } |