From 41d5fed9f9e094c290ac42649c79641cae0bda52 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Sun, 10 Oct 1999 04:55:04 +0000 Subject: [PATCH] (krb5_ccache_data): make `ops' const git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@7129 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/krb5.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/krb5/krb5.h b/lib/krb5/krb5.h index 37b5cfba1..07e0e9a30 100644 --- a/lib/krb5/krb5.h +++ b/lib/krb5/krb5.h @@ -227,7 +227,7 @@ struct krb5_cc_ops; typedef void *krb5_cc_cursor; typedef struct krb5_ccache_data { - struct krb5_cc_ops *ops; + const struct krb5_cc_ops *ops; krb5_data data; }krb5_ccache_data;