From d28fa8faab5de5979dcd5535a7cd7095d3233e29 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 9 Jun 2010 19:12:02 -0700 Subject: Rename "allow_smb2" -> "using_smb2" and make the usage clearer. --- source3/modules/onefs_cbrl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/modules/onefs_cbrl.c') diff --git a/source3/modules/onefs_cbrl.c b/source3/modules/onefs_cbrl.c index 6d5d8c65ae..4b0600b35c 100644 --- a/source3/modules/onefs_cbrl.c +++ b/source3/modules/onefs_cbrl.c @@ -90,7 +90,7 @@ static void onefs_cbrl_enumerate_blq(const char *fn) DEBUG(10, ("CBRL BLR records (%s):\n", fn)); - if (sconn->allow_smb2) { + if (sconn->using_smb2) { struct smbd_smb2_request *smb2req; for (smb2req = sconn->smb2.requests; smb2req; smb2req = nextreq) { blr = get_pending_smb2req_blr(smb2req); @@ -112,7 +112,7 @@ static struct blocking_lock_record *onefs_cbrl_find_blr(uint64_t id) onefs_cbrl_enumerate_blq("onefs_cbrl_find_blr"); - if (sconn->allow_smb2) { + if (sconn->using_smb2) { struct smbd_smb2_request *smb2req; for (smb2req = sconn->smb2.requests; smb2req; smb2req = nextreq) { blr = get_pending_smb2req_blr(smb2req); -- cgit