diff options
author | Chris Tuchs | 2011-05-08 03:06:23 -0700 |
---|---|---|
committer | Chris Tuchs | 2011-05-08 03:06:23 -0700 |
commit | 7f1cbfae2af93ec11f79b8e2d1db22822ffb6dc7 (patch) | |
tree | fe9134ed7c34b81a39570d0988b7147f153bd9bb /linden/indra/llcommon/llmd5.cpp | |
parent | Windows build change I am sure of (diff) | |
download | meta-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.cpp | 2 |
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 | } |