diff options
author | Andrew Gierth <andrew@tao146.riddles.org.uk> | 2023-12-24 12:04:21 +0000 |
---|---|---|
committer | Konstantin Belousov <kib@FreeBSD.org> | 2023-12-29 00:34:07 +0000 |
commit | 2001d7f6a272cff780937b9bd9a4f625035fb92c (patch) | |
tree | 4ada8e82f1a76a2b3cae6934fbbdd0199e2fddcd | |
parent | e9251d68b206d4ea4be4413c17e008c76dd49e79 (diff) |
vfs_domount_update(): correct fsidcmp() usage
(cherry picked from commit 2a1d50fc12f6e604da834fbaea961d412aae6e85)
-rw-r--r-- | sys/kern/vfs_mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/vfs_mount.c b/sys/kern/vfs_mount.c index 1ba3b1559a69..79a23b058add 100644 --- a/sys/kern/vfs_mount.c +++ b/sys/kern/vfs_mount.c @@ -1389,7 +1389,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; } |