From c24a7d2d803509efb33b0ed8ed3fcab8e91e1908 Mon Sep 17 00:00:00 2001 From: Love Hornquist Astrand Date: Fri, 8 Jan 2010 13:07:27 +0100 Subject: [PATCH] fix const-ifyier on cc-ops --- lib/krb5/context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/krb5/context.c b/lib/krb5/context.c index b9512c413..dff7a700c 100644 --- a/lib/krb5/context.c +++ b/lib/krb5/context.c @@ -245,7 +245,7 @@ cc_ops_register(krb5_context context) static krb5_error_code cc_ops_copy(krb5_context context, const krb5_context src_context) { - krb5_cc_ops **cc_ops; + const krb5_cc_ops **cc_ops; context->cc_ops = NULL; context->num_cc_ops = 0;