diff options
author | Matt Caswell <matt@openssl.org> | 2016-04-28 12:34:54 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-04-29 16:04:15 +0200 |
commit | 5fd1478df34be8d17c8507f17ec4298635c72814 (patch) | |
tree | 562c1f48842ca2ebc57bb54e86850f760e49ca21 /crypto/ebcdic.c | |
parent | VMS: only explicitely translate names in library C files. (diff) | |
download | openssl-5fd1478df34be8d17c8507f17ec4298635c72814.tar.xz openssl-5fd1478df34be8d17c8507f17ec4298635c72814.zip |
Fix building with -DCHARSET_EBCDIC
Building with -DCHARSET_EBCDIC and using --strict-warnings resulted in
lots of miscellaneous errors. This fixes it.
Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'crypto/ebcdic.c')
-rw-r--r-- | crypto/ebcdic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ebcdic.c b/crypto/ebcdic.c index 1248cba260..995dbdf574 100644 --- a/crypto/ebcdic.c +++ b/crypto/ebcdic.c @@ -4,7 +4,7 @@ NON_EMPTY_TRANSLATION_UNIT #else -# include "ebcdic.h" +# include <openssl/ebcdic.h> /*- * Initial Port for Apache-1.3 by <Martin.Kraemer@Mch.SNI.De> |