summaryrefslogtreecommitdiff
path: root/source4/kdc/pac-glue.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-11-11 15:11:21 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:25:27 -0500
commitc7792701169baa0ab0d86d5f2b221dd3e7665679 (patch)
treefaf5ab23d0f0659d7828ff8a10f512668853a15f /source4/kdc/pac-glue.h
parentd822b963f9c178f3f2278be717ac97fbcb8de01c (diff)
downloadsamba-c7792701169baa0ab0d86d5f2b221dd3e7665679.tar.gz
samba-c7792701169baa0ab0d86d5f2b221dd3e7665679.tar.bz2
samba-c7792701169baa0ab0d86d5f2b221dd3e7665679.zip
r19664: fix compiler warnings...
should _krb5_find_type_in_ad() also take a const? metze (This used to be commit addc31bd9309cb2b41cbb548c82c80de1cf96c4f)
Diffstat (limited to 'source4/kdc/pac-glue.h')
-rw-r--r--source4/kdc/pac-glue.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/kdc/pac-glue.h b/source4/kdc/pac-glue.h
index e5b1960209..1cda3e4d55 100644
--- a/source4/kdc/pac-glue.h
+++ b/source4/kdc/pac-glue.h
@@ -31,17 +31,17 @@
krb5_error_code hdb_ldb_authz_data_as_req(krb5_context context, struct hdb_entry_ex *entry_ex,
METHOD_DATA* pa_data_seq,
time_t authtime,
- EncryptionKey *tgtkey,
- EncryptionKey *sessionkey,
+ const EncryptionKey *tgtkey,
+ const EncryptionKey *sessionkey,
AuthorizationData **out);
krb5_error_code hdb_ldb_authz_data_tgs_req(krb5_context context, struct hdb_entry_ex *entry_ex,
krb5_principal client,
AuthorizationData *in,
time_t authtime,
- EncryptionKey *tgtkey,
- EncryptionKey *servicekey,
- EncryptionKey *sessionkey,
+ const EncryptionKey *tgtkey,
+ const EncryptionKey *servicekey,
+ const EncryptionKey *sessionkey,
AuthorizationData **out);
krb5_error_code hdb_ldb_check_client_access(krb5_context context, hdb_entry_ex *entry_ex,
HostAddresses *addresses);