summaryrefslogtreecommitdiff
path: root/apps/enc.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-01-31 11:13:10 +0100
committerRichard Levitte <levitte@openssl.org>2018-01-31 23:45:12 +0100
commitdab2cd68e7cc304c9b1a4e7cee18a98711771a53 (patch)
treefcc105dd7b25b1089de1812559409c7cb9718d0a /apps/enc.c
parent79a0e87648bb932d88f117e96dabd2c4eb44cb99 (diff)
downloadopenssl-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/enc.c')
-rw-r--r--apps/enc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/enc.c b/apps/enc.c
index af882598cc..5153251b31 100644
--- a/apps/enc.c
+++ b/apps/enc.c
@@ -12,6 +12,7 @@
#include <string.h>
#include <limits.h>
#include "apps.h"
+#include "progs.h"
#include <openssl/bio.h>
#include <openssl/err.h>
#include <openssl/evp.h>