aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llmd5.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-09-06 18:24:57 -0500
committerJacek Antonelli2008-09-06 18:25:07 -0500
commit798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch)
tree1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/llcommon/llmd5.cpp
parentSecond Life viewer sources 1.20.15 (diff)
downloadmeta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz
Second Life viewer sources 1.21.0-RC
Diffstat (limited to '')
-rw-r--r--linden/indra/llcommon/llmd5.cpp (renamed from linden/indra/llmath/llmd5.cpp)4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llmath/llmd5.cpp b/linden/indra/llcommon/llmd5.cpp
index ea69002..a0ac92f 100644
--- a/linden/indra/llmath/llmd5.cpp
+++ b/linden/indra/llcommon/llmd5.cpp
@@ -157,7 +157,7 @@ void LLMD5::update (const uint1 *input, const uint4 input_length) {
157// MD5 update for files. 157// MD5 update for files.
158// Like above, except that it works on files (and uses above as a primitive.) 158// Like above, except that it works on files (and uses above as a primitive.)
159 159
160void LLMD5::update(LLFILE* file){ 160void LLMD5::update(FILE* file){
161 161
162 unsigned char buffer[BLOCK_LEN]; /* Flawfinder: ignore */ 162 unsigned char buffer[BLOCK_LEN]; /* Flawfinder: ignore */
163 int len; 163 int len;
@@ -237,7 +237,7 @@ void LLMD5::finalize (){
237 237
238 238
239 239
240LLMD5::LLMD5(LLFILE *file){ 240LLMD5::LLMD5(FILE *file){
241 241
242 init(); // must be called be all constructors 242 init(); // must be called be all constructors
243 update(file); 243 update(file);