summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2003-01-08 03:51:03 +0000
committerKen Raeburn <raeburn@mit.edu>2003-01-08 03:51:03 +0000
commit1ab164c46e3276f2b5056727f4118b17aa040c71 (patch)
treedfae55e687c14da7436b29b8320bd488cbacd1c2 /src/include
parentfe7af2a64a45687e8bc7cbebe1317e9de1681293 (diff)
downloadkrb5-1ab164c46e3276f2b5056727f4118b17aa040c71.tar.gz
krb5-1ab164c46e3276f2b5056727f4118b17aa040c71.tar.xz
krb5-1ab164c46e3276f2b5056727f4118b17aa040c71.zip
More const for ops tables
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15094 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-rw-r--r--src/include/ChangeLog1
-rw-r--r--src/include/k5-int.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/include/ChangeLog b/src/include/ChangeLog
index 93599755c8..d01684e070 100644
--- a/src/include/ChangeLog
+++ b/src/include/ChangeLog
@@ -4,6 +4,7 @@
(struct krb5_rc_st): Field ops now points to const.
(krb5_rc_register_type): Ops argument now points to const.
(krb5_rc_dfl_ops): Now const.
+ (struct _krb5_ccache): Field ops now points to const.
2003-01-06 Sam Hartman <hartmans@mit.edu>
diff --git a/src/include/k5-int.h b/src/include/k5-int.h
index 0d98e8fa2c..2bfce56e68 100644
--- a/src/include/k5-int.h
+++ b/src/include/k5-int.h
@@ -1680,7 +1680,7 @@ krb5_error_code KRB5_CALLCONV krb5int_accessor
struct _krb5_ccache {
krb5_magic magic;
- struct _krb5_cc_ops *ops;
+ const struct _krb5_cc_ops *ops;
krb5_pointer data;
};