diff options
author | TingPing <tingping@fedoraproject.org> | 2014-06-04 10:30:18 -0400 |
---|---|---|
committer | TingPing <tingping@fedoraproject.org> | 2014-06-04 10:30:18 -0400 |
commit | b8c02f71d9bbaf805534d5327d8c3935a3b87636 (patch) | |
tree | 723ae84fda43728303d4651a42f800f3ef1abd79 /src/common/ssl.c | |
parent | 806b98dfc215f0c561ab51babe970abfa787169e (diff) |
win32: Use config.h instead of config-win32.h
Diffstat (limited to 'src/common/ssl.c')
-rw-r--r-- | src/common/ssl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/common/ssl.c b/src/common/ssl.c index d036fb66..71d4f1da 100644 --- a/src/common/ssl.c +++ b/src/common/ssl.c @@ -27,10 +27,8 @@ #include <openssl/err.h> /* ERR_() */ #ifdef WIN32 #include <openssl/rand.h> /* RAND_seed() */ -#include "../../config-win32.h" /* HAVE_SNPRINTF */ -#else -#include "../../config.h" #endif +#include "../../config.h" #include <time.h> /* asctime() */ #include <string.h> /* strncpy() */ #include "ssl.h" /* struct cert_info */ |