make compile again

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@23803 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2008-09-07 21:36:01 +00:00
parent e3826c3a28
commit d1728c8424

View File

@@ -344,7 +344,7 @@ open_database(krb5_context context, krb5_scache *s, int flags)
s->db = NULL; s->db = NULL;
} else } else
krb5_set_error_message(context, ENOENT, krb5_set_error_message(context, ENOENT,
N_("malloc: out of memory"), ""); N_("malloc: out of memory", ""));
return ENOENT; return ENOENT;
} }
return 0; return 0;
@@ -458,7 +458,7 @@ bind_principal(krb5_context context,
if (ret != SQLITE_OK) { if (ret != SQLITE_OK) {
krb5_xfree(str); krb5_xfree(str);
krb5_set_error_message(context, ENOMEM, krb5_set_error_message(context, ENOMEM,
N_("scache bind principal: %s", "") N_("scache bind principal: %s", ""),
sqlite3_errmsg(db)); sqlite3_errmsg(db));
return ENOMEM; return ENOMEM;
} }