diff options
author | 2014-05-18 16:21:03 +0000 | |
---|---|---|
committer | 2014-05-18 16:21:03 +0000 | |
commit | 1658ff46cce652e39cc1887d7f62d2339c9dc584 (patch) | |
tree | fae4ce9357d6ab923ad8a1944e082d2c940e5ecd /lib/libssl/src/apps/engine.c | |
parent | Plug memory leaks upon error in OCSP_url_svcloc_new(). (diff) | |
download | wireguard-openbsd-1658ff46cce652e39cc1887d7f62d2339c9dc584.tar.xz wireguard-openbsd-1658ff46cce652e39cc1887d7f62d2339c9dc584.zip |
Group and sort includes.
Currently "apps.h" needs to be included before any of the openssl headers
and there are several cases where the code depends on headers that are
included by something included by apps.h...
More untangling saved for later on.
Diffstat (limited to 'lib/libssl/src/apps/engine.c')
-rw-r--r-- | lib/libssl/src/apps/engine.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libssl/src/apps/engine.c b/lib/libssl/src/apps/engine.c index 7b11ea57d9c..2cf7bd2412e 100644 --- a/lib/libssl/src/apps/engine.c +++ b/lib/libssl/src/apps/engine.c @@ -56,17 +56,17 @@ * */ - #include <stdio.h> #include <stdlib.h> #include <string.h> + #include "apps.h" -#include <openssl/err.h> + #ifndef OPENSSL_NO_ENGINE #include <openssl/engine.h> +#include <openssl/err.h> #include <openssl/ssl.h> - static const char *engine_usage[] = { "usage: engine opts [engine ...]\n", " -v[v[v[v]]] - verbose mode, for each engine, list its 'control commands'\n", |