From 9406c12b1ba9f517c514db4f097a522046291a75 Mon Sep 17 00:00:00 2001
From: Paul Bakker
Date: Wed, 16 Jan 2013 14:02:02 +0100
Subject: [PATCH] Fixed typo
---
library/error.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/library/error.c b/library/error.c
index a4a1fffab..792b90235 100644
--- a/library/error.c
+++ b/library/error.c
@@ -165,7 +165,7 @@ void error_strerror( int ret, char *buf, size_t buflen )
if( use_ret == -(POLARSSL_ERR_DHM_READ_PUBLIC_FAILED) )
snprintf( buf, buflen, "DHM - Reading of the public values failed" );
if( use_ret == -(POLARSSL_ERR_DHM_MAKE_PUBLIC_FAILED) )
- snprintf( buf, buflen, "DHM - Makeing of the public value failed" );
+ snprintf( buf, buflen, "DHM - Making of the public value failed" );
if( use_ret == -(POLARSSL_ERR_DHM_CALC_SECRET_FAILED) )
snprintf( buf, buflen, "DHM - Calculation of the DHM secret failed" );
#endif /* POLARSSL_DHM_C */