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/ca.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/ca.c')
-rw-r--r-- | apps/ca.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -32,6 +32,7 @@ #endif #include "apps.h" +#include "progs.h" #ifndef W_OK # define F_OK 0 |