diff options
author | Rich Salz <rsalz@openssl.org> | 2015-01-12 23:29:26 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2015-01-12 23:30:54 +0100 |
commit | 6d23cf97443bfedf755341b4f2d0d7fce254e020 (patch) | |
tree | ef52ffc0029a579d35439f2dc0ba2deee966ed93 /apps/x509.c | |
parent | Allow multiple IDN xn-- indicators (diff) | |
download | openssl-6d23cf97443bfedf755341b4f2d0d7fce254e020.tar.xz openssl-6d23cf97443bfedf755341b4f2d0d7fce254e020.zip |
RT3548: Remove unsupported platforms
This last one for this ticket. Removes WIN16.
So long, MS_CALLBACK and MS_FAR. We won't miss you.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'apps/x509.c')
-rw-r--r-- | apps/x509.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/apps/x509.c b/apps/x509.c index 3bb261010f..b3c23907bf 100644 --- a/apps/x509.c +++ b/apps/x509.c @@ -60,9 +60,6 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#ifdef OPENSSL_NO_STDIO -#define APPS_WIN16 -#endif #include "apps.h" #include <openssl/bio.h> #include <openssl/asn1.h> @@ -156,7 +153,7 @@ static const char *x509_usage[]={ NULL }; -static int MS_CALLBACK callb(int ok, X509_STORE_CTX *ctx); +static int callb(int ok, X509_STORE_CTX *ctx); static int sign (X509 *x, EVP_PKEY *pkey,int days,int clrext, const EVP_MD *digest, CONF *conf, char *section); static int x509_certify (X509_STORE *ctx,char *CAfile,const EVP_MD *digest, @@ -1279,7 +1276,7 @@ end: return ret; } -static int MS_CALLBACK callb(int ok, X509_STORE_CTX *ctx) +static int callb(int ok, X509_STORE_CTX *ctx) { int err; X509 *err_cert; |