diff options
author | Michael Vogt <egon@bottom> | 2006-05-16 21:34:04 +0200 |
---|---|---|
committer | Michael Vogt <egon@bottom> | 2006-05-16 21:34:04 +0200 |
commit | 6479b9024082c3d3942e7741624ba8c9b6d60d35 (patch) | |
tree | 242d30f3e881c4f0eb8006b54518884d230b0723 /apt-pkg | |
parent | ae6f2268b49710b5b153d6d28a80268f2f3df3da (diff) | |
parent | 4bbffb86b668e067bf930ae8a57aebc4afa33de5 (diff) |
* merged from the aj-ftparchive-improvements branch
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/contrib/sha256.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apt-pkg/contrib/sha256.cc b/apt-pkg/contrib/sha256.cc index a4d258d26..ad2ddb2d3 100644 --- a/apt-pkg/contrib/sha256.cc +++ b/apt-pkg/contrib/sha256.cc @@ -61,7 +61,10 @@ static inline u32 Maj(u32 x, u32 y, u32 z) static inline void LOAD_OP(int I, u32 *W, const u8 *input) { - W[I] = ntohl( ((u32*)(input))[I] ); + W[I] = ( ((u32) input[I + 0] << 24) + | ((u32) input[I + 1] << 16) + | ((u32) input[I + 2] << 8) + | ((u32) input[I + 3])); } static inline void BLEND_OP(int I, u32 *W) |