Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
b2ef0f99
Commit
b2ef0f99
authored
13 years ago
by
Oz Linden
Browse files
Options
Downloads
Plain Diff
merge changes for storm-1546
parents
ff2eb602
6a7bbe01
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/newview/llsecapi.h
+1
-1
1 addition, 1 deletion
indra/newview/llsecapi.h
indra/newview/llsechandler_basic.cpp
+3
-3
3 additions, 3 deletions
indra/newview/llsechandler_basic.cpp
with
4 additions
and
4 deletions
indra/newview/llsecapi.h
+
1
−
1
View file @
b2ef0f99
...
...
@@ -160,7 +160,7 @@ class LLCertificate : public LLRefCount
// base class for a list of certificates.
class
LLCertificateVector
:
public
LLRefCount
class
LLCertificateVector
:
public
LL
ThreadSafe
RefCount
{
public:
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llsechandler_basic.cpp
+
3
−
3
View file @
b2ef0f99
...
...
@@ -1209,12 +1209,12 @@ void LLSecAPIBasicHandler::init()
// with the product
std
::
string
ca_file_path
=
gDirUtilp
->
getExpandedFilename
(
LL_PATH_APP_SETTINGS
,
"CA.pem"
);
llinfos
<<
"app path "
<<
ca_file_path
<<
llendl
;
LLBasicCertificateStore
app_ca_store
=
LLBasicCertificateStore
(
ca_file_path
);
LLPointer
<
LLBasicCertificateStore
>
app_ca_store
=
new
LLBasicCertificateStore
(
ca_file_path
);
// push the applicate CA files into the store, therefore adding any new CA certs that
// updated
for
(
LLCertificateVector
::
iterator
i
=
app_ca_store
.
begin
();
i
!=
app_ca_store
.
end
();
for
(
LLCertificateVector
::
iterator
i
=
app_ca_store
->
begin
();
i
!=
app_ca_store
->
end
();
i
++
)
{
mStore
->
add
(
*
i
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment