1
0
mirror of https://github.com/moparisthebest/curl synced 2025-03-11 07:39:50 -04:00

urldata: use uniform inclusion style for OpenSSL headers

This commit is contained in:
Yang Tse 2011-06-07 18:35:42 +02:00
parent c0b9dd27b5
commit 377f88364e

View File

@ -1,5 +1,5 @@
#ifndef __URLDATA_H #ifndef HEADER_CURL_URLDATA_H
#define __URLDATA_H #define HEADER_CURL_URLDATA_H
/*************************************************************************** /***************************************************************************
* _ _ ____ _ * _ _ ____ _
* Project ___| | | | _ \| | * Project ___| | | | _ \| |
@ -71,12 +71,12 @@
#ifdef USE_SSLEAY #ifdef USE_SSLEAY
#ifdef USE_OPENSSL #ifdef USE_OPENSSL
#include "openssl/rsa.h" #include <openssl/rsa.h>
#include "openssl/crypto.h" #include <openssl/crypto.h>
#include "openssl/x509.h" #include <openssl/x509.h>
#include "openssl/pem.h" #include <openssl/pem.h>
#include "openssl/ssl.h" #include <openssl/ssl.h>
#include "openssl/err.h" #include <openssl/err.h>
#ifdef HAVE_OPENSSL_ENGINE_H #ifdef HAVE_OPENSSL_ENGINE_H
#include <openssl/engine.h> #include <openssl/engine.h>
#endif #endif
@ -84,12 +84,12 @@
#include <openssl/pkcs12.h> #include <openssl/pkcs12.h>
#endif #endif
#else /* SSLeay-style includes */ #else /* SSLeay-style includes */
#include "rsa.h" #include <rsa.h>
#include "crypto.h" #include <crypto.h>
#include "x509.h" #include <x509.h>
#include "pem.h" #include <pem.h>
#include "ssl.h" #include <ssl.h>
#include "err.h" #include <err.h>
#ifdef HAVE_OPENSSL_ENGINE_H #ifdef HAVE_OPENSSL_ENGINE_H
#include <engine.h> #include <engine.h>
#endif #endif
@ -1570,4 +1570,4 @@ struct SessionHandle {
#define LIBCURL_NAME "libcurl" #define LIBCURL_NAME "libcurl"
#endif #endif /* HEADER_CURL_URLDATA_H */