remove debug printf's

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@17277 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-04-26 16:59:52 +00:00
parent e944135b02
commit 70552d3ed2

View File

@@ -1376,20 +1376,6 @@ hx509_verify_path(hx509_context context,
ret = _hx509_name_cmp(&proxy_issuer,
&c->tbsCertificate.subject);
if (ret) {
char *str;
ret = hx509_name_to_string(&proxy_issuer, &str);
if (ret)
abort();
printf("name: %s\n", str);
free(str);
ret = hx509_name_to_string(&c->tbsCertificate.subject, &str);
if (ret)
abort();
printf("subject: %s\n", str);
free(str);
printf("name wrong3\n");
ret = HX509_PROXY_CERT_NAME_WRONG;
goto out;
}