[PATCH] ec/ec_pmeth.c: fix unsigned char issue

2013-10-29 Thread Marcelo Cerri
In some platforms, such as POWER, char is defined as unsigned. This patch fix a problem when comparing a char to -1. Signed-off-by: Marcelo Cerri --- crypto/ec/ec_pmeth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/ec/ec_pmeth.c b/crypto/ec/ec_pmeth.c index e477418

[PATCH] ec/ec_pmeth.c: fix unsigned char issue

2013-10-30 Thread y
From: Marcelo Cerri In some platforms, such as POWER, char is defined as unsigned. This patch fix a problem when comparing a char to -1. Signed-off-by: Marcelo Cerri --- crypto/ec/ec_pmeth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/ec/ec_pmeth.c b/crypto/ec/ec

Re: [PATCH] ec/ec_pmeth.c: fix unsigned char issue

2013-11-07 Thread Marcelo Cerri
Hi, any news on that? On Tue, Oct 29, 2013 at 05:01:03PM -0200, Marcelo Cerri wrote: > In some platforms, such as POWER, char is defined as unsigned. This > patch fix a problem when comparing a char to -1. > > Signed-off-by: Marcelo Cerri > --- > crypto/ec/ec_pmeth.c | 2 +- > 1 file changed, 1

Re: [PATCH] ec/ec_pmeth.c: fix unsigned char issue

2013-11-07 Thread Dr. Stephen Henson
On Thu, Nov 07, 2013, Marcelo Cerri wrote: > Hi, any news on that? > > On Tue, Oct 29, 2013 at 05:01:03PM -0200, Marcelo Cerri wrote: > > In some platforms, such as POWER, char is defined as unsigned. This > > patch fix a problem when comparing a char to -1. > > > > Signed-off-by: Marcelo Cerri

Re: [PATCH] ec/ec_pmeth.c: fix unsigned char issue

2013-11-08 Thread Marcelo Cerri
Yes. It also works. Regards, Marcelo Cerri On Thu, Nov 07, 2013 at 02:07:41PM +0100, Dr. Stephen Henson wrote: > On Thu, Nov 07, 2013, Marcelo Cerri wrote: > > > Hi, any news on that? > > > > On Tue, Oct 29, 2013 at 05:01:03PM -0200, Marcelo Cerri wrote: > > > In some platforms, such as POWER,