don't use krb5_err on error code 0

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@14033 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2004-07-09 02:07:33 +00:00
parent 5f6c0d534f
commit bcfc839f89

View File

@@ -134,7 +134,7 @@ test_mcache(krb5_context context)
ret = krb5_cc_get_principal(context, id2, &p2);
if (ret == 0)
krb5_err(context, 1, ret, "krb5_cc_get_principal");
krb5_errx(context, 1, "krb5_cc_get_principal");
krb5_cc_destroy(context, id2);
}