From: Lutz Jänicke Date: Sun, 4 Jan 2004 17:53:21 +0000 (+0000) Subject: unintptr_t and are not strictly portable with respect to X-Git-Tag: BEN_FIPS_TEST_5~13^2~3 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=344e86645d99f8e912567a8e76ce88e9e897e58c;p=oweals%2Fopenssl.git unintptr_t and are not strictly portable with respect to ANSI C 89. Undo change to maintain compatibility. --- diff --git a/ssl/ssltest.c b/ssl/ssltest.c index 63641df6c3..68eb654572 100644 --- a/ssl/ssltest.c +++ b/ssl/ssltest.c @@ -124,7 +124,6 @@ #include #include #include -#include #define USE_SOCKETS #include "e_os.h" @@ -1594,7 +1593,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)