- Removed extraneous "polarssl/" in front on include directives in header files
diff --git a/include/polarssl/bn_mul.h b/include/polarssl/bn_mul.h index 59a3285..22076db 100644 --- a/include/polarssl/bn_mul.h +++ b/include/polarssl/bn_mul.h
@@ -41,7 +41,7 @@ #ifndef POLARSSL_BN_MUL_H #define POLARSSL_BN_MUL_H -#include "polarssl/config.h" +#include "config.h" #if defined(POLARSSL_HAVE_ASM)
diff --git a/include/polarssl/cipher_wrap.h b/include/polarssl/cipher_wrap.h index 891382a..1638c24 100644 --- a/include/polarssl/cipher_wrap.h +++ b/include/polarssl/cipher_wrap.h
@@ -27,8 +27,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "polarssl/config.h" -#include "polarssl/cipher.h" +#include "config.h" +#include "cipher.h" #ifndef POLARSSL_CIPHER_WRAP_H #define POLARSSL_CIPHER_WRAP_H
diff --git a/include/polarssl/debug.h b/include/polarssl/debug.h index b1758b8..263c939 100644 --- a/include/polarssl/debug.h +++ b/include/polarssl/debug.h
@@ -27,8 +27,8 @@ #ifndef SSL_DEBUG_H #define SSL_DEBUG_H -#include "polarssl/config.h" -#include "polarssl/ssl.h" +#include "config.h" +#include "ssl.h" #if defined(POLARSSL_DEBUG_MSG) && defined(POLARSSL_DEBUG_C)
diff --git a/include/polarssl/dhm.h b/include/polarssl/dhm.h index 94ad015..1cbfc6c 100644 --- a/include/polarssl/dhm.h +++ b/include/polarssl/dhm.h
@@ -27,7 +27,7 @@ #ifndef POLARSSL_DHM_H #define POLARSSL_DHM_H -#include "polarssl/bignum.h" +#include "bignum.h" /* * DHM Error codes
diff --git a/include/polarssl/md_wrap.h b/include/polarssl/md_wrap.h index a936e61..b6640bd 100644 --- a/include/polarssl/md_wrap.h +++ b/include/polarssl/md_wrap.h
@@ -27,8 +27,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "polarssl/config.h" -#include "polarssl/md.h" +#include "config.h" +#include "md.h" #ifndef POLARSSL_MD_WRAP_H #define POLARSSL_MD_WRAP_H
diff --git a/include/polarssl/openssl.h b/include/polarssl/openssl.h index 4423857..62609a2 100644 --- a/include/polarssl/openssl.h +++ b/include/polarssl/openssl.h
@@ -30,10 +30,10 @@ #ifndef POLARSSL_OPENSSL_H #define POLARSSL_OPENSSL_H -#include "polarssl/aes.h" -#include "polarssl/md5.h" -#include "polarssl/rsa.h" -#include "polarssl/sha1.h" +#include "aes.h" +#include "md5.h" +#include "rsa.h" +#include "sha1.h" #define AES_SIZE 16 #define AES_BLOCK_SIZE 16
diff --git a/include/polarssl/padlock.h b/include/polarssl/padlock.h index 08fbe82..ce13570 100644 --- a/include/polarssl/padlock.h +++ b/include/polarssl/padlock.h
@@ -27,7 +27,7 @@ #ifndef POLARSSL_PADLOCK_H #define POLARSSL_PADLOCK_H -#include "polarssl/aes.h" +#include "aes.h" #define POLARSSL_ERR_PADLOCK_DATA_MISALIGNED -0x0030 /**< Input data should be aligned. */
diff --git a/include/polarssl/pkcs11.h b/include/polarssl/pkcs11.h index 8e2a8ce..07da0de 100644 --- a/include/polarssl/pkcs11.h +++ b/include/polarssl/pkcs11.h
@@ -30,11 +30,11 @@ #ifndef PKCS11_H_ #define PKCS11_H_ -#include "polarssl/config.h" +#include "config.h" #if defined(POLARSSL_PKCS11_C) -#include "polarssl/x509.h" +#include "x509.h" #include <pkcs11-helper-1.0/pkcs11h-certificate.h>
diff --git a/include/polarssl/rsa.h b/include/polarssl/rsa.h index bbfe77d..c9ecbcd 100644 --- a/include/polarssl/rsa.h +++ b/include/polarssl/rsa.h
@@ -27,7 +27,7 @@ #ifndef POLARSSL_RSA_H #define POLARSSL_RSA_H -#include "polarssl/bignum.h" +#include "bignum.h" /* * RSA Error codes
diff --git a/include/polarssl/ssl.h b/include/polarssl/ssl.h index c39c762..45cb1cc 100644 --- a/include/polarssl/ssl.h +++ b/include/polarssl/ssl.h
@@ -29,16 +29,16 @@ #include <time.h> -#include "polarssl/net.h" -#include "polarssl/dhm.h" -#include "polarssl/rsa.h" -#include "polarssl/md5.h" -#include "polarssl/sha1.h" -#include "polarssl/x509.h" -#include "polarssl/config.h" +#include "net.h" +#include "dhm.h" +#include "rsa.h" +#include "md5.h" +#include "sha1.h" +#include "x509.h" +#include "config.h" #if defined(POLARSSL_PKCS11_C) -#include "polarssl/pkcs11.h" +#include "pkcs11.h" #endif #if defined(_MSC_VER) && !defined(inline)
diff --git a/include/polarssl/version.h b/include/polarssl/version.h index 03a55ce..a12fdd1 100644 --- a/include/polarssl/version.h +++ b/include/polarssl/version.h
@@ -31,7 +31,7 @@ #ifndef POLARSSL_VERSION_H #define POLARSSL_VERSION_H -#include "polarssl/config.h" +#include "config.h" /** * The version number x.y.z is split into three parts.
diff --git a/include/polarssl/x509.h b/include/polarssl/x509.h index b0b05a7..a2d5440 100644 --- a/include/polarssl/x509.h +++ b/include/polarssl/x509.h
@@ -27,8 +27,8 @@ #ifndef POLARSSL_X509_H #define POLARSSL_X509_H -#include "polarssl/rsa.h" -#include "polarssl/dhm.h" +#include "rsa.h" +#include "dhm.h" /** * \addtogroup x509_module