=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/openssl/openssl.c,v retrieving revision 1.6 retrieving revision 1.7 diff -c -r1.6 -r1.7 *** src/usr.bin/openssl/openssl.c 2015/09/10 16:43:06 1.6 --- src/usr.bin/openssl/openssl.c 2015/09/11 14:30:23 1.7 *************** *** 1,4 **** ! /* $OpenBSD: openssl.c,v 1.6 2015/09/10 16:43:06 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * --- 1,4 ---- ! /* $OpenBSD: openssl.c,v 1.7 2015/09/11 14:30:23 bcook Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * *************** *** 126,135 **** #include #include - #ifndef OPENSSL_NO_ENGINE - #include - #endif - #include "progs.h" #include "s_apps.h" --- 126,131 ---- *************** *** 162,170 **** { FUNC_TYPE_GENERAL, "crl", crl_main }, { FUNC_TYPE_GENERAL, "dgst", dgst_main }, { FUNC_TYPE_GENERAL, "enc", enc_main }, - #ifndef OPENSSL_NO_ENGINE - { FUNC_TYPE_GENERAL, "engine", engine_main }, - #endif { FUNC_TYPE_GENERAL, "errstr", errstr_main }, { FUNC_TYPE_GENERAL, "genpkey", genpkey_main }, { FUNC_TYPE_GENERAL, "nseq", nseq_main }, --- 158,163 ---- *************** *** 419,428 **** SSL_library_init(); SSL_load_error_strings(); - #ifndef OPENSSL_NO_ENGINE - ENGINE_load_builtin_engines(); - #endif - setup_ui_method(); } --- 412,417 ---- *************** *** 433,443 **** destroy_ui_method(); OBJ_cleanup(); EVP_cleanup(); - - #ifndef OPENSSL_NO_ENGINE - ENGINE_cleanup(); - #endif - CRYPTO_cleanup_all_ex_data(); ERR_remove_thread_state(NULL); ERR_free_strings(); --- 422,427 ----