Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
11d09da6
Commit
11d09da6
authored
Nov 11, 2020
by
Paul Gofman
Committed by
Alexandre Julliard
Nov 12, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Prevent gnutls from using system priority file.
Signed-off-by:
Paul Gofman
<
pgofman@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f15328b1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
unixlib.c
dlls/crypt32/unixlib.c
+11
-0
No files found.
dlls/crypt32/unixlib.c
View file @
11d09da6
...
...
@@ -86,8 +86,19 @@ static void gnutls_log( int level, const char *msg )
BOOL
gnutls_initialize
(
void
)
{
const
char
*
env_str
;
int
ret
;
if
((
env_str
=
getenv
(
"GNUTLS_SYSTEM_PRIORITY_FILE"
)))
{
WARN
(
"GNUTLS_SYSTEM_PRIORITY_FILE is %s.
\n
"
,
debugstr_a
(
env_str
));
}
else
{
WARN
(
"Setting GNUTLS_SYSTEM_PRIORITY_FILE to
\"
/dev/null
\"
.
\n
"
);
setenv
(
"GNUTLS_SYSTEM_PRIORITY_FILE"
,
"/dev/null"
,
0
);
}
if
(
!
(
libgnutls_handle
=
dlopen
(
SONAME_LIBGNUTLS
,
RTLD_NOW
)))
{
ERR_
(
winediag
)(
"failed to load libgnutls, no support for pfx import/export
\n
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment