From: Andrew Bartlett Date: Sun, 25 Jun 2023 23:03:14 +0000 (+1200) Subject: Align samba_kdc_update_pac() prototype in pac-glue.h with the implementation in pac... X-Git-Tag: talloc-2.4.1~196 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ecff09d75df52df8bd062e55e75d42d76e25d66e;p=thirdparty%2Fsamba.git Align samba_kdc_update_pac() prototype in pac-glue.h with the implementation in pac-glue.c Commit 6bd3b4528d4b33c8f7ae6341d166bea3a06cd971 diverged the const declarations in the header, this brings them back in alignnment as is Samba's normal practice. Signed-off-by: Andrew Bartlett Reviewed-by: Joseph Sutton Autobuild-User(master): Andrew Bartlett Autobuild-Date(master): Mon Jun 26 00:26:37 UTC 2023 on atb-devel-224 --- diff --git a/source4/kdc/pac-glue.h b/source4/kdc/pac-glue.h index 5b23f18f7f6..bb343233ae1 100644 --- a/source4/kdc/pac-glue.h +++ b/source4/kdc/pac-glue.h @@ -138,8 +138,8 @@ krb5_error_code samba_kdc_update_pac(TALLOC_CTX *mem_ctx, const struct samba_kdc_entry *server, const krb5_const_principal delegated_proxy_principal, struct samba_kdc_entry *device, - krb5_const_pac device_pac, - krb5_const_pac old_pac, + const krb5_const_pac device_pac, + const krb5_const_pac old_pac, krb5_pac new_pac, struct authn_audit_info **server_audit_info_out, NTSTATUS *status_out);