There's no HEIM_BOOL_TRUE; use heim_bool_create(1) instead

This commit is contained in:
Nicolas Williams
2012-01-13 16:15:56 -06:00
parent 74db6a120f
commit 11763aecc7
2 changed files with 2 additions and 1 deletions

View File

@@ -20,6 +20,7 @@ HEIMDAL_BASE_1.0 {
heim_auto_release_create;
heim_auto_release_drain;
heim_base_once_f;
heim_bool_create;
heim_bool_val;
heim_cmp;
heim_dict_create;

View File

@@ -293,7 +293,7 @@ eval_kgetcred(heim_dict_t o)
nostore = heim_dict_get_value(o, HSTR("nostore"));
if (nostore == NULL)
nostore = HEIM_BOOL_TRUE;
nostore = heim_bool_create(1);
ret = krb5_cc_resolve(kdc_context, heim_string_get_utf8(ccache), &cc);
if (ret)