diff options
Diffstat (limited to 'linden/indra/llmath/llmd5.cpp')
-rw-r--r-- | linden/indra/llmath/llmd5.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/linden/indra/llmath/llmd5.cpp b/linden/indra/llmath/llmd5.cpp index 267381c..aad4617 100644 --- a/linden/indra/llmath/llmd5.cpp +++ b/linden/indra/llmath/llmd5.cpp | |||
@@ -3,6 +3,7 @@ | |||
3 | * | 3 | * |
4 | * Copyright (c) 2001-2007, Linden Research, Inc. | 4 | * Copyright (c) 2001-2007, Linden Research, Inc. |
5 | * | 5 | * |
6 | * Second Life Viewer Source Code | ||
6 | * The source code in this file ("Source Code") is provided by Linden Lab | 7 | * The source code in this file ("Source Code") is provided by Linden Lab |
7 | * to you under the terms of the GNU General Public License, version 2.0 | 8 | * to you under the terms of the GNU General Public License, version 2.0 |
8 | * ("GPL"), unless you have obtained a separate licensing agreement | 9 | * ("GPL"), unless you have obtained a separate licensing agreement |
@@ -258,7 +259,7 @@ LLMD5::LLMD5(const unsigned char *string, const unsigned int number) | |||
258 | init(); | 259 | init(); |
259 | update(string, (U32)strlen((const char *) string)); /* Flawfinder: ignore */ | 260 | update(string, (U32)strlen((const char *) string)); /* Flawfinder: ignore */ |
260 | update((const unsigned char *) colon, (U32)strlen(colon)); /* Flawfinder: ignore */ | 261 | update((const unsigned char *) colon, (U32)strlen(colon)); /* Flawfinder: ignore */ |
261 | snprintf(tbuf, sizeof(tbuf), "%i", number); /* Flawfinder: ignore */ | 262 | snprintf(tbuf, sizeof(tbuf), "%i", number); /* Flawfinder: ignore */ |
262 | update((const unsigned char *) tbuf, (U32)strlen(tbuf)); /* Flawfinder: ignore */ | 263 | update((const unsigned char *) tbuf, (U32)strlen(tbuf)); /* Flawfinder: ignore */ |
263 | finalize(); | 264 | finalize(); |
264 | } | 265 | } |