diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-16 18:54:19 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-16 19:29:10 +0100 |
commit | dd3048b2e483f66571cfa1b2ccebb2091b9ad990 (patch) | |
tree | e8cc587d06c15befd9ab7212938bb0e05a029c23 /auth | |
parent | 2e38095efd8cad7fe6feb95dbeb276b7a4287f05 (diff) | |
download | hurd-dd3048b2e483f66571cfa1b2ccebb2091b9ad990.tar.gz hurd-dd3048b2e483f66571cfa1b2ccebb2091b9ad990.tar.bz2 hurd-dd3048b2e483f66571cfa1b2ccebb2091b9ad990.zip |
Make RPC input array parameters const
This follows mig's cf4bcc3f1435 ("Also add const qualifiers on server
side")
Diffstat (limited to 'auth')
-rw-r--r-- | auth/auth.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/auth/auth.c b/auth/auth.c index 886a9cfb..29c9fd8d 100644 --- a/auth/auth.c +++ b/auth/auth.c @@ -115,11 +115,11 @@ S_auth_getids (struct authhandle *auth, /* Implement auth_makeauth as described in <hurd/auth.defs>. */ kern_return_t S_auth_makeauth (struct authhandle *auth, - mach_port_t *authpts, size_t nauths, - uid_t *euids, size_t neuids, - uid_t *auids, size_t nauids, - uid_t *egids, size_t negids, - uid_t *agids, size_t nagids, + const mach_port_t *authpts, size_t nauths, + const uid_t *euids, size_t neuids, + const uid_t *auids, size_t nauids, + const uid_t *egids, size_t negids, + const uid_t *agids, size_t nagids, mach_port_t *newhandle) { struct authhandle *newauth, *auths[1 + nauths]; |