Date: Sun, 20 Sep 2015 20:16:34 +0000 (UTC) From: Craig Rodrigues <rodrigc@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r288027 - head/lib/libc/posix1e Message-ID: <201509202016.t8KKGYIw075772@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rodrigc Date: Sun Sep 20 20:16:34 2015 New Revision: 288027 URL: https://svnweb.freebsd.org/changeset/base/288027 Log: Remove names from some prototypes Modified: head/lib/libc/posix1e/acl_compat.c head/lib/libc/posix1e/acl_support.h Modified: head/lib/libc/posix1e/acl_compat.c ============================================================================== --- head/lib/libc/posix1e/acl_compat.c Sun Sep 20 20:15:44 2015 (r288026) +++ head/lib/libc/posix1e/acl_compat.c Sun Sep 20 20:16:34 2015 (r288027) @@ -29,9 +29,9 @@ __FBSDID("$FreeBSD$"); #include <sys/acl.h> -int __oldacl_get_perm_np(acl_permset_t permset_d, oldacl_perm_t perm); -int __oldacl_add_perm(acl_permset_t permset_d, oldacl_perm_t perm); -int __oldacl_delete_perm(acl_permset_t permset_d, oldacl_perm_t perm); +int __oldacl_get_perm_np(acl_permset_t, oldacl_perm_t); +int __oldacl_add_perm(acl_permset_t, oldacl_perm_t); +int __oldacl_delete_perm(acl_permset_t, oldacl_perm_t); /* * Compatibility wrappers for applications compiled against libc from before Modified: head/lib/libc/posix1e/acl_support.h ============================================================================== --- head/lib/libc/posix1e/acl_support.h Sun Sep 20 20:15:44 2015 (r288026) +++ head/lib/libc/posix1e/acl_support.h Sun Sep 20 20:16:34 2015 (r288027) @@ -45,8 +45,8 @@ int _acl_brand_may_be(const acl_t acl, i int _entry_brand_may_be(const acl_entry_t entry, int brand); void _acl_brand_as(acl_t acl, int brand); void _entry_brand_as(const acl_entry_t entry, int brand); -int _nfs4_acl_entry_from_text(acl_t aclp, char *str); -char *_nfs4_acl_to_text_np(const acl_t aclp, ssize_t *len_p, int flags); +int _nfs4_acl_entry_from_text(acl_t, char *); +char *_nfs4_acl_to_text_np(const acl_t, ssize_t *, int); int _nfs4_format_flags(char *str, size_t size, acl_flag_t var, int verbose); int _nfs4_format_access_mask(char *str, size_t size, acl_perm_t var, int verbose); int _nfs4_parse_flags(const char *str, acl_flag_t *var);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509202016.t8KKGYIw075772>