From f795123c4a846048ca246dcaff3bae581cc19770 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Thu, 12 May 2005 22:39:42 +0000 Subject: [PATCH] Fix from stable branch. --- ssl/ssltest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/ssltest.c b/ssl/ssltest.c index bbfbfc9b38..085456c90e 100644 --- a/ssl/ssltest.c +++ b/ssl/ssltest.c @@ -1987,7 +1987,7 @@ static int MS_CALLBACK app_verify_callback(X509_STORE_CTX *ctx, void *arg) fprintf(stderr, "In app_verify_callback, allowing cert. "); fprintf(stderr, "Arg is: %s\n", cb_arg->string); fprintf(stderr, "Finished printing do we have a context? 0x%p a cert? 0x%p\n", - ctx, ctx->cert); + (void *)ctx, (void *)ctx->cert); if (ctx->cert) s=X509_NAME_oneline(X509_get_subject_name(ctx->cert),buf,256); if (s != NULL)