Fix include path in ecdsa.h
diff --git a/ChangeLog b/ChangeLog
index 0d65cec..6483dfa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -14,6 +14,8 @@
* Fixed malloc/free default #define in platform.c (found by Gergely Budai).
* Fixed type which made POLARSSL_ENTROPY_FORCE_SHA256 uneffective (found by
Gergely Budai).
+ * Fix #include path in ecdsa.h which wasn't accepted by some compilers.
+ (found by Gergely Budai)
= PolarSSL 1.3.5 released on 2014-03-26
Features
diff --git a/include/polarssl/ecdsa.h b/include/polarssl/ecdsa.h
index 0fab07e..b5e363e 100644
--- a/include/polarssl/ecdsa.h
+++ b/include/polarssl/ecdsa.h
@@ -30,7 +30,7 @@
#include "ecp.h"
#if defined(POLARSSL_ECDSA_DETERMINISTIC)
-#include "polarssl/md.h"
+#include "md.h"
#endif
/**