From d9b05d873f4a67bb15f56176e2326ac26d5e3fef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Fri, 3 Apr 2009 04:03:18 +0000 Subject: [PATCH] use constants for cache types git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@25037 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/login/login.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appl/login/login.c b/appl/login/login.c index cfcd2ea78..6f0b62648 100644 --- a/appl/login/login.c +++ b/appl/login/login.c @@ -161,7 +161,7 @@ krb5_verify(struct passwd *pwd, const char *password) ret = krb5_parse_name(context, pwd->pw_name, &princ); if(ret) return 1; - ret = krb5_cc_new_unique(context, "MEMORY", NULL, &id); + ret = krb5_cc_new_unique(context, krb5_cc_type_memory, NULL, &id); if(ret) { krb5_free_principal(context, princ); return 1;