mirror of
https://github.com/opnsense/src.git
synced 2026-04-27 17:17:19 -04:00
correct moronic typo
This commit is contained in:
parent
fd27f1594e
commit
fdc79fd3fc
1 changed files with 2 additions and 2 deletions
|
|
@ -484,12 +484,12 @@ again:
|
|||
* whether we have f/w at all and whether a config flag
|
||||
* has disabled our download.
|
||||
*/
|
||||
if ((isp->isp_mdvec->dv_ispfw != NULL) ||
|
||||
if ((isp->isp_mdvec->dv_ispfw == NULL) ||
|
||||
(isp->isp_confopts & ISP_CFG_NORELOAD)) {
|
||||
dodnld = 0;
|
||||
}
|
||||
|
||||
if (dodnld && isp->isp_mdvec->dv_ispfw) {
|
||||
if (dodnld) {
|
||||
u_int16_t fwlen = isp->isp_mdvec->dv_fwlen;
|
||||
if (fwlen == 0)
|
||||
fwlen = isp->isp_mdvec->dv_ispfw[3]; /* usually here */
|
||||
|
|
|
|||
Loading…
Reference in a new issue