The branch main has been updated by pjd:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=ff4fc43afdeaadac0d40ca46850ba2e863e0c8d3

commit ff4fc43afdeaadac0d40ca46850ba2e863e0c8d3
Author:     Pawel Jakub Dawidek <[email protected]>
AuthorDate: 2024-05-22 03:56:59 +0000
Commit:     Pawel Jakub Dawidek <[email protected]>
CommitDate: 2024-05-22 03:56:59 +0000

    Fix build.
---
 sys/fs/fuse/fuse_vnops.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys/fs/fuse/fuse_vnops.c b/sys/fs/fuse/fuse_vnops.c
index 925838c89bcb..eb07861c04ba 100644
--- a/sys/fs/fuse/fuse_vnops.c
+++ b/sys/fs/fuse/fuse_vnops.c
@@ -2249,6 +2249,7 @@ fuse_vnop_setattr(struct vop_setattr_args *ap)
                                if (vap->va_uid != old_va.va_uid)
                                        return err;
                                drop_suid = true;
+                       }
                }
                accmode |= VADMIN;
        }
@@ -2269,6 +2270,7 @@ fuse_vnop_setattr(struct vop_setattr_args *ap)
                                        return (err2);
                                if (vap->va_gid != old_va.va_gid)
                                        return err;
+                       }
                }
                accmode |= VADMIN;
        }

Reply via email to