From 3fbbd1e1d71cf1f33b0b1e58bee7638b03692b68 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lutz=20J=C3=A4nicke?= Date: Sun, 4 Jan 2004 17:54:02 +0000 Subject: [PATCH] unintptr_t and are not strictly portable with respect to ANSI C 89. Undo change to maintain compatibility. --- ssl/ssltest.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ssl/ssltest.c b/ssl/ssltest.c index 7e76c2381a..28095148e7 100644 --- a/ssl/ssltest.c +++ b/ssl/ssltest.c @@ -119,7 +119,6 @@ #include #include #include -#include #define USE_SOCKETS #include "e_os.h" @@ -1509,7 +1508,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", (char *)arg); fprintf(stderr, "Finished printing do we have a context? 0x%x a cert? 0x%x\n", - (uintptr_t)ctx, (uintptr_t)ctx->cert); + (unsigned int)ctx, (unsigned int)ctx->cert); if (ctx->cert) s=X509_NAME_oneline(X509_get_subject_name(ctx->cert),buf,256); if (s != NULL) -- 2.25.1