* ccbase.c: Include ctype.h.
(struct krb5_cc_typelist): Field ops now points to const.
* ccdefault.c (krb5_cc_default): Delete unused variable "retval".
git-svn-id: svn://anonsvn.mit.edu/krb5/tags/krb5-1-3-6-final@17551
dc483132-0cff-0310-8789-
dd5450dbe970
+2005-12-07 Ken Raeburn <raeburn@mit.edu>
+
+ * ccbase.c: Include ctype.h.
+ (struct krb5_cc_typelist): Field ops now points to const.
+
+ * ccdefault.c (krb5_cc_default): Delete unused variable "retval".
+
2004-09-01 Jeffrey Altman <jaltman@mit.edu>
* cc_mslsa.c:
* Registration functions for ccache.
*/
+#include <ctype.h>
#include "k5-int.h"
#include "fcc.h"
struct krb5_cc_typelist
{
- krb5_cc_ops *ops;
+ const krb5_cc_ops *ops;
struct krb5_cc_typelist *next;
};
extern const krb5_cc_ops krb5_mcc_ops;
krb5_error_code KRB5_CALLCONV
krb5_cc_default(krb5_context context, krb5_ccache *ccache)
{
- krb5_error_code retval;
krb5_os_context os_ctx;
if (!context || context->magic != KV5M_CONTEXT)