summaryrefslogtreecommitdiff
path: root/crypto/conf
diff options
context:
space:
mode:
authorappro <appro>2005-05-17 00:01:43 +0000
committerappro <appro>2005-05-17 00:01:43 +0000
commit8538aac04e741baec574ebb0e9c44b19d64ca1da (patch)
treea11186c512b2778bb1b95b1022689f31f1b12a20 /crypto/conf
parent30e4a753d03530992b35e98a44e537fbb549a356 (diff)
downloadopenssl-8538aac04e741baec574ebb0e9c44b19d64ca1da.tar.gz
Move cryptlib.h prior bio.h. Actually it makes sense to include cryptlib.h
first everywhere in crypto and skip stdio.h and string.h [because it includes them].
Diffstat (limited to 'crypto/conf')
-rw-r--r--crypto/conf/conf_def.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/conf/conf_def.c b/crypto/conf/conf_def.c
index f14de2293..996a0999a 100644
--- a/crypto/conf/conf_def.c
+++ b/crypto/conf/conf_def.c
@@ -60,6 +60,7 @@
#include <stdio.h>
#include <string.h>
+#include "cryptlib.h"
#include <openssl/stack.h>
#include <openssl/lhash.h>
#include <openssl/conf.h>
@@ -67,7 +68,6 @@
#include "conf_def.h"
#include <openssl/buffer.h>
#include <openssl/err.h>
-#include "cryptlib.h"
static char *eat_ws(CONF *conf, char *p);
static char *eat_alpha_numeric(CONF *conf, char *p);