diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llmath/llmd5.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llmath/llmd5.cpp b/linden/indra/llmath/llmd5.cpp index a0ac92f..ea69002 100644 --- a/linden/indra/llmath/llmd5.cpp +++ b/linden/indra/llmath/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 | ||
160 | void LLMD5::update(FILE* file){ | 160 | void LLMD5::update(LLFILE* 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 | ||
240 | LLMD5::LLMD5(FILE *file){ | 240 | LLMD5::LLMD5(LLFILE *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); |