diff options
author | Volker Lendecke <vl@samba.org> | 2010-06-12 11:40:37 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-06-12 15:42:51 +0200 |
commit | 0275502b9ce870656e033791196c2c33330ca4b0 (patch) | |
tree | 8ce43d6f2f9f6d36fc3ea7c47810333e9990db4f /source3 | |
parent | d724ac3e8c861b0fa59fd3fb9529af9c8aa0642e (diff) | |
download | samba-0275502b9ce870656e033791196c2c33330ca4b0.tar.gz samba-0275502b9ce870656e033791196c2c33330ca4b0.tar.bz2 samba-0275502b9ce870656e033791196c2c33330ca4b0.zip |
s3: Remove smbd_server_conn from reply_tcon
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 10bab7b851..fe8128ab7b 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -607,7 +607,7 @@ void reply_tcon(struct smb_request *req) const char *p; DATA_BLOB password_blob; TALLOC_CTX *ctx = talloc_tos(); - struct smbd_server_connection *sconn = smbd_server_conn; + struct smbd_server_connection *sconn = req->sconn; START_PROFILE(SMBtcon); |