From: Adam Dickmeiss Date: Mon, 14 Feb 2011 12:41:00 +0000 (+0100) Subject: Filter multi: simple rename X-Git-Tag: v1.2.5~1^2~14 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=b72c05508923d1edc9f6444969e4a95f7991b363;p=metaproxy-moved-to-github.git Filter multi: simple rename --- 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;