Deleted Added
full compact
engine.c (109998) engine.c (111147)
1/* apps/engine.c -*- mode: C; c-file-style: "eay" -*- */
2/* Written by Richard Levitte <richard@levitte.org> for the OpenSSL
3 * project 2000.
4 */
5/* ====================================================================
6 * Copyright (c) 2000 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 42 unchanged lines hidden (view full) ---

51 * ====================================================================
52 *
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
56 *
57 */
58
1/* apps/engine.c -*- mode: C; c-file-style: "eay" -*- */
2/* Written by Richard Levitte <richard@levitte.org> for the OpenSSL
3 * project 2000.
4 */
5/* ====================================================================
6 * Copyright (c) 2000 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 42 unchanged lines hidden (view full) ---

51 * ====================================================================
52 *
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
56 *
57 */
58
59#ifndef OPENSSL_NO_ENGINE
60
59#include <stdio.h>
60#include <stdlib.h>
61#include <string.h>
62#ifdef OPENSSL_NO_STDIO
63#define APPS_WIN16
64#endif
65#include "apps.h"
66#include <openssl/err.h>

--- 446 unchanged lines hidden (view full) ---

513 ERR_print_errors(bio_err);
514 sk_pop_free(engines, identity);
515 sk_pop_free(pre_cmds, identity);
516 sk_pop_free(post_cmds, identity);
517 if (bio_out != NULL) BIO_free_all(bio_out);
518 apps_shutdown();
519 OPENSSL_EXIT(ret);
520 }
61#include <stdio.h>
62#include <stdlib.h>
63#include <string.h>
64#ifdef OPENSSL_NO_STDIO
65#define APPS_WIN16
66#endif
67#include "apps.h"
68#include <openssl/err.h>

--- 446 unchanged lines hidden (view full) ---

515 ERR_print_errors(bio_err);
516 sk_pop_free(engines, identity);
517 sk_pop_free(pre_cmds, identity);
518 sk_pop_free(post_cmds, identity);
519 if (bio_out != NULL) BIO_free_all(bio_out);
520 apps_shutdown();
521 OPENSSL_EXIT(ret);
522 }
523#endif