diff options
author | Roxie Linden <roxie@lindenlab.com> | 2010-03-02 13:42:17 -0800 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2010-03-02 13:42:17 -0800 |
commit | d79af12e04e182bab639e64e9cd1181d5c799582 (patch) | |
tree | 20a6554d68f3f0a514ddfc2b8d11cae55f86752b /indra/newview/llsechandler_basic.cpp | |
parent | 25467eaf4aca8496b44f54b2ac7b72cb600fbb25 (diff) |
Fix windows build break, segfault on exit and bad library link location
Diffstat (limited to 'indra/newview/llsechandler_basic.cpp')
-rw-r--r-- | indra/newview/llsechandler_basic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llsechandler_basic.cpp b/indra/newview/llsechandler_basic.cpp index d41ec96ab6..51e250ffc6 100644 --- a/indra/newview/llsechandler_basic.cpp +++ b/indra/newview/llsechandler_basic.cpp @@ -387,7 +387,7 @@ std::string cert_string_from_octet_string(ASN1_OCTET_STRING* value) std::stringstream result; result << std::hex << std::setprecision(2); - for (unsigned int i=0; i < value->length; i++) + for (int i=0; i < value->length; i++) { if (i != 0) { |