vfs_domount_update(): correct fsidcmp() usage

MFC after:	3 days
This commit is contained in:
Andrew Gierth 2023-12-24 14:04:21 +02:00 committed by Konstantin Belousov
parent c0047e7c35
commit 2a1d50fc12

View file

@ -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;
}