mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
vfs_domount_update(): correct fsidcmp() usage
MFC after: 3 days
This commit is contained in:
parent
c0047e7c35
commit
2a1d50fc12
1 changed files with 1 additions and 1 deletions
|
|
@ -1388,7 +1388,7 @@ vfs_domount_update(
|
|||
error = EINVAL;
|
||||
goto end;
|
||||
}
|
||||
if (fsidcmp(&fsid_up, &mp->mnt_stat.f_fsid) != 0) {
|
||||
if (fsidcmp(fsid_up, &mp->mnt_stat.f_fsid) != 0) {
|
||||
error = ENOENT;
|
||||
goto end;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue