mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
Use the correct field name for the size of the sierra_id. While this
is the same size as id, and is unlikely to change, it seems better to use the correct field here. There's no difference in the generated code.
This commit is contained in:
parent
9078981ab1
commit
bb5d3b71d3
1 changed files with 1 additions and 1 deletions
|
|
@ -264,7 +264,7 @@ iso_mountfs(devvp, mp)
|
|||
vdp = (struct iso_volume_descriptor *)bp->b_data;
|
||||
if (bcmp (vdp->id, ISO_STANDARD_ID, sizeof vdp->id) != 0) {
|
||||
if (bcmp (vdp->id_sierra, ISO_SIERRA_ID,
|
||||
sizeof vdp->id) != 0) {
|
||||
sizeof vdp->id_sierra) != 0) {
|
||||
error = EINVAL;
|
||||
goto out;
|
||||
} else
|
||||
|
|
|
|||
Loading…
Reference in a new issue