aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llmd5.cpp
diff options
context:
space:
mode:
authorChris Tuchs2011-05-08 03:06:23 -0700
committerChris Tuchs2011-05-08 03:06:23 -0700
commit7f1cbfae2af93ec11f79b8e2d1db22822ffb6dc7 (patch)
treefe9134ed7c34b81a39570d0988b7147f153bd9bb /linden/indra/llcommon/llmd5.cpp
parentWindows build change I am sure of (diff)
downloadmeta-impy-7f1cbfae2af93ec11f79b8e2d1db22822ffb6dc7.zip
meta-impy-7f1cbfae2af93ec11f79b8e2d1db22822ffb6dc7.tar.gz
meta-impy-7f1cbfae2af93ec11f79b8e2d1db22822ffb6dc7.tar.bz2
meta-impy-7f1cbfae2af93ec11f79b8e2d1db22822ffb6dc7.tar.xz
Windows build changes, maybe only needed for vc2005. Mostly snprintf -> ll_snprintf, namespace hacks confused vc2005
Diffstat (limited to 'linden/indra/llcommon/llmd5.cpp')
-rw-r--r--linden/indra/llcommon/llmd5.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/llcommon/llmd5.cpp b/linden/indra/llcommon/llmd5.cpp
index 887979b..42b289d 100644
--- a/linden/indra/llcommon/llmd5.cpp
+++ b/linden/indra/llcommon/llmd5.cpp
@@ -264,7 +264,7 @@ LLMD5::LLMD5(const unsigned char *string, const unsigned int number)
264 init(); 264 init();
265 update(string, (U32)strlen((const char *) string)); /* Flawfinder: ignore */ 265 update(string, (U32)strlen((const char *) string)); /* Flawfinder: ignore */
266 update((const unsigned char *) colon, (U32)strlen(colon)); /* Flawfinder: ignore */ 266 update((const unsigned char *) colon, (U32)strlen(colon)); /* Flawfinder: ignore */
267 snprintf(tbuf, sizeof(tbuf), "%i", number); /* Flawfinder: ignore */ 267 ll_snprintf(tbuf, sizeof(tbuf), "%i", number); /* Flawfinder: ignore */
268 update((const unsigned char *) tbuf, (U32)strlen(tbuf)); /* Flawfinder: ignore */ 268 update((const unsigned char *) tbuf, (U32)strlen(tbuf)); /* Flawfinder: ignore */
269 finalize(); 269 finalize();
270} 270}