diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-05-04 11:02:59 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-05-04 11:02:59 +0200 |
commit | 032af4376ff2e531234bcb0eb1cecf564c36f11b (patch) | |
tree | 7ae7e8a58cddc4a5284cfcf1d0d03875dbae16ee /package/busybox/busybox-1.14.0-des.patch | |
parent | 7d369f837f656f9b4754854aab5877e01cb4980d (diff) |
busybox: 1.14.0 mdev / des fixes
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/busybox/busybox-1.14.0-des.patch')
-rw-r--r-- | package/busybox/busybox-1.14.0-des.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/busybox/busybox-1.14.0-des.patch b/package/busybox/busybox-1.14.0-des.patch new file mode 100644 index 000000000..efb1d7cc4 --- /dev/null +++ b/package/busybox/busybox-1.14.0-des.patch @@ -0,0 +1,14 @@ +--- busybox-1.14.0/libbb/pw_encrypt_des.c Tue Apr 14 01:43:00 2009 ++++ busybox-1.14.0-des/libbb/pw_encrypt_des.c Fri May 1 03:40:16 2009 +@@ -778,8 +778,10 @@ + to64_msb_first(output + 2, (r0 >> 8)); + /* bits 7..0 of r0 and 31..16 of r1 */ + to64_msb_first(output + 6, (r0 << 16) | (r1 >> 16)); +- /* (bits 15..0 of r1 + 00) and NUL byte */ ++ /* bits 15..0 of r1 and two zero bits (plus extra zero byte) */ + to64_msb_first(output + 10, (r1 << 8)); ++ /* extra zero byte is encoded as '.', fixing it */ ++ output[13] = '\0'; + #endif + + return output; |