mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Extension of previous commit- when we have 2k login firmware, we need to
put out a ispreqt2e_t structure onto the request queue- not a ispreqt2_t structure. I forgot that the 23XX can use a t2 structure. Approved by: re (ken, implicitly) MFC after: 3 days
This commit is contained in:
parent
4907faa674
commit
458570f736
1 changed files with 7 additions and 1 deletions
|
|
@ -2847,7 +2847,13 @@ mbxsync:
|
|||
(ispextreq_t *)qep);
|
||||
break;
|
||||
case RQSTYPE_T2RQS:
|
||||
isp_put_request_t2(isp, (ispreqt2_t *) rq, (ispreqt2_t *) qep);
|
||||
if (FCPARAM(isp)->isp_2klogin) {
|
||||
isp_put_request_t2e(isp,
|
||||
(ispreqt2e_t *) rq, (ispreqt2e_t *) qep);
|
||||
else {
|
||||
isp_put_request_t2(isp,
|
||||
(ispreqt2_t *) rq, (ispreqt2_t *) qep);
|
||||
}
|
||||
break;
|
||||
case RQSTYPE_T3RQS:
|
||||
if (FCPARAM(isp)->isp_2klogin) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue