diff options
author | Richard Levitte <levitte@openssl.org> | 2018-01-31 11:13:10 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2018-01-31 23:45:12 +0100 |
commit | dab2cd68e7cc304c9b1a4e7cee18a98711771a53 (patch) | |
tree | fcc105dd7b25b1089de1812559409c7cb9718d0a /apps/s_client.c | |
parent | 79a0e87648bb932d88f117e96dabd2c4eb44cb99 (diff) | |
download | openssl-new-dab2cd68e7cc304c9b1a4e7cee18a98711771a53.tar.gz |
apps: Don't include progs.h in apps.h
Everything in apps includes apps.h, because that one declares apps
internal library routines. However, progs.h doesn't declare library
routines, but rather the main commands and their options, and there's
no reason why the library modules should include it.
So, remove the inclusion of progs.h from apps.h and add that inclusion
in all command source files.
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5222)
Diffstat (limited to 'apps/s_client.c')
-rw-r--r-- | apps/s_client.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/s_client.c b/apps/s_client.c index 814a52a934..774345e256 100644 --- a/apps/s_client.c +++ b/apps/s_client.c @@ -30,6 +30,7 @@ typedef unsigned int u_int; #endif #include "apps.h" +#include "progs.h" #include <openssl/x509.h> #include <openssl/ssl.h> #include <openssl/err.h> |