From b72c05508923d1edc9f6444969e4a95f7991b363 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 14 Feb 2011 13:41:00 +0100 Subject: [PATCH] Filter multi: simple rename --- src/filter_multi.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/filter_multi.cpp b/src/filter_multi.cpp index c0a03fb..06cbb52 100644 --- a/src/filter_multi.cpp +++ b/src/filter_multi.cpp @@ -419,16 +419,16 @@ void yf::Multi::Frontend::init(mp::Package &package, Z_GDU *gdu) init_apdu->u.initRequest->idAuthentication = req->idAuthentication; - Z_InitRequest *req = init_apdu->u.initRequest; + Z_InitRequest *breq = init_apdu->u.initRequest; - ODR_MASK_SET(req->options, Z_Options_search); - ODR_MASK_SET(req->options, Z_Options_present); - ODR_MASK_SET(req->options, Z_Options_namedResultSets); - ODR_MASK_SET(req->options, Z_Options_scan); + ODR_MASK_SET(breq->options, Z_Options_search); + ODR_MASK_SET(breq->options, Z_Options_present); + ODR_MASK_SET(breq->options, Z_Options_namedResultSets); + ODR_MASK_SET(breq->options, Z_Options_scan); - ODR_MASK_SET(req->protocolVersion, Z_ProtocolVersion_1); - ODR_MASK_SET(req->protocolVersion, Z_ProtocolVersion_2); - ODR_MASK_SET(req->protocolVersion, Z_ProtocolVersion_3); + ODR_MASK_SET(breq->protocolVersion, Z_ProtocolVersion_1); + ODR_MASK_SET(breq->protocolVersion, Z_ProtocolVersion_2); + ODR_MASK_SET(breq->protocolVersion, Z_ProtocolVersion_3); b->m_package->request() = init_apdu; -- 1.7.10.4