The branch main has been updated by brooks:

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

commit 27676ae365f62c22f8daa816bf7a07d22bd081d9
Author:     Brooks Davis <[email protected]>
AuthorDate: 2024-03-19 21:53:50 +0000
Commit:     Brooks Davis <[email protected]>
CommitDate: 2024-03-19 23:13:27 +0000

    syscalls.master: use __acl_type_t
    
    Reviewed by:    kib
    Differential Revision:  https://reviews.freebsd.org/D44418
---
 sys/kern/syscalls.master | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index c5485294dcd0..8a681889cc6a 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -1824,54 +1824,54 @@
 347    AUE_ACL_GET_FILE        STD {
                int __acl_get_file(
                    _In_z_ const char *path,
-                   acl_type_t type,
+                   __acl_type_t type,
                    _Out_ struct acl *aclp
                );
        }
 348    AUE_ACL_SET_FILE        STD {
                int __acl_set_file(
                    _In_z_ const char *path,
-                   acl_type_t type,
+                   __acl_type_t type,
                    _In_ struct acl *aclp
                );
        }
 349    AUE_ACL_GET_FD  STD|CAPENABLED {
                int __acl_get_fd(
                    int filedes,
-                   acl_type_t type,
+                   __acl_type_t type,
                    _Out_ struct acl *aclp
                );
        }
 350    AUE_ACL_SET_FD  STD|CAPENABLED {
                int __acl_set_fd(
                    int filedes,
-                   acl_type_t type,
+                   __acl_type_t type,
                    _In_ struct acl *aclp
                );
        }
 351    AUE_ACL_DELETE_FILE     STD {
                int __acl_delete_file(
                    _In_z_ const char *path,
-                   acl_type_t type
+                   __acl_type_t type
                );
        }
 352    AUE_ACL_DELETE_FD       STD|CAPENABLED {
                int __acl_delete_fd(
                    int filedes,
-                   acl_type_t type
+                   __acl_type_t type
                );
        }
 353    AUE_ACL_CHECK_FILE      STD {
                int __acl_aclcheck_file(
                    _In_z_ const char *path,
-                   acl_type_t type,
+                   __acl_type_t type,
                    _In_ struct acl *aclp
                );
        }
 354    AUE_ACL_CHECK_FD        STD|CAPENABLED {
                int __acl_aclcheck_fd(
                    int filedes,
-                   acl_type_t type,
+                   __acl_type_t type,
                    _In_ struct acl *aclp
                );
        }
@@ -2246,27 +2246,27 @@
 425    AUE_ACL_GET_LINK        STD {
                int __acl_get_link(
                    _In_z_ const char *path,
-                   acl_type_t type,
+                   __acl_type_t type,
                    _Out_ struct acl *aclp
                );
        }
 426    AUE_ACL_SET_LINK        STD {
                int __acl_set_link(
                    _In_z_ const char *path,
-                   acl_type_t type,
+                   __acl_type_t type,
                    _In_ struct acl *aclp
                );
        }
 427    AUE_ACL_DELETE_LINK     STD {
                int __acl_delete_link(
                    _In_z_ const char *path,
-                   acl_type_t type
+                   __acl_type_t type
                );
        }
 428    AUE_ACL_CHECK_LINK      STD {
                int __acl_aclcheck_link(
                    _In_z_ const char *path,
-                   acl_type_t type,
+                   __acl_type_t type,
                    _In_ struct acl *aclp
                );
        }

Reply via email to