From: Ken Raeburn Date: Wed, 28 Nov 1990 09:33:41 +0000 (+0000) Subject: krb5_cc_dfl_ops is now a pointer X-Git-Tag: krb5-1.0-alpha3~84 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=62cec4c63006a1568772b82330d33da9110779a1;p=krb5.git krb5_cc_dfl_ops is now a pointer git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1509 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/include/krb5/ccache.h b/src/include/krb5/ccache.h index cb33778b2..5ae934859 100644 --- a/src/include/krb5/ccache.h +++ b/src/include/krb5/ccache.h @@ -70,6 +70,6 @@ typedef struct _krb5_cc_ops { #define krb5_cc_set_flags(cache, flags) (*(cache)->ops->set_flags)(cache, flags) #define krb5_cc_get_name(cache) (*(cache)->ops->get_name)(cache) -extern krb5_cc_ops krb5_cc_dfl_ops; +extern krb5_cc_ops *krb5_cc_dfl_ops; #endif /* KRB5_CCACHE__ */