Re: [PATCH] crypto/aes.c remove operator ? and variable t in bf_setkey

2007-07-18 Thread Frederik Sdun
Hi now i have the failure in my patch. i excuse for the spamming and foolness. happy coding Frederik Removed the temporary variable t which is not needed working copy of p. Operator ? removed out of loop by false case. Signed-off-by: Frederik Sdun <[EMAIL PROTECTED]> --- linux-2.6/

Re: [PATCH] crypto/aes.c remove operator ? and variable t in bf_setkey

2007-07-16 Thread Frederik Sdun
Removed the temporary variable t. Operator ? removed out of loop by false case. Signed-off-by: Frederik Sdun <[EMAIL PROTECTED]> --- crypto/aes.c.orig 2007-07-15 11:43:21.0 +0200 +++ crypto/aes.c2007-07-16 14:38:57.0 +0200 @@ -135,7 +135,7 @@ f_mult (u8 a

[PATCH] crypto/aes.c remove operator ? and variable t in bf_setkey

2007-07-15 Thread Frederik Sdun
Hi, this removes the the ? operator which is false nearly all the time. --- aes.c.orig 2007-07-15 11:43:21.0 +0200 +++ aes.c 2007-07-16 01:56:49.0 +0200 @@ -156,9 +156,12 @@ p = (p << 1) ^ (p & 0x80 ? 0x01b : 0); } + + sbx_tab[0] = 0x63; +