aboutsummaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2009-04-07 11:07:02 +0000
committerFlorian Fainelli <florian@openwrt.org>2009-04-07 11:07:02 +0000
commit5aca04960ef56e09ad9b95ee79e945ba390268aa (patch)
tree4a5650a89d5a77f34a17b6101b0c559b5d55f00c /target
parent9fa8380c9ea965fcb08ade60ff55cbafd97a48d3 (diff)
downloadupstream-5aca04960ef56e09ad9b95ee79e945ba390268aa.tar.gz
upstream-5aca04960ef56e09ad9b95ee79e945ba390268aa.tar.bz2
upstream-5aca04960ef56e09ad9b95ee79e945ba390268aa.zip
fix typo in 910-cryptodev_backport.patch (#3933)
SVN-Revision: 15132
Diffstat (limited to 'target')
-rw-r--r--target/linux/generic-2.6/patches-2.6.26/910-cryptodev_backport.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.26/910-cryptodev_backport.patch b/target/linux/generic-2.6/patches-2.6.26/910-cryptodev_backport.patch
index 5cc6fa4c9b..94adc4d185 100644
--- a/target/linux/generic-2.6/patches-2.6.26/910-cryptodev_backport.patch
+++ b/target/linux/generic-2.6/patches-2.6.26/910-cryptodev_backport.patch
@@ -501,7 +501,7 @@
+ dw = SUBKEY_L(i + 3) ^ SUBKEY_R(i + 3); dw = rol32(dw, 8);/* round 4 */
SUBKEY_R(i + 3) = SUBKEY_L(i + 3) ^ dw; SUBKEY_L(i + 3) = dw;
- dw = SUBKEY_L(i + 4) ^ SUBKEY_R(i + 4); dw = ROL8(dw);/* round 5 */
-+ dw = SUBKEY_L(i + 4) ^ SUBKEY_R(i + 4); dw = rol32(dw, 9);/* round 5 */
++ dw = SUBKEY_L(i + 4) ^ SUBKEY_R(i + 4); dw = rol32(dw, 8);/* round 5 */
SUBKEY_R(i + 4) = SUBKEY_L(i + 4) ^ dw; SUBKEY_L(i + 4) = dw;
- dw = SUBKEY_L(i + 5) ^ SUBKEY_R(i + 5); dw = ROL8(dw);/* round 6 */
+ dw = SUBKEY_L(i + 5) ^ SUBKEY_R(i + 5); dw = rol32(dw, 8);/* round 6 */