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
6209459b
Commit
6209459b
authored
Feb 01, 2009
by
Juan Lang
Committed by
Alexandre Julliard
Feb 09, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cryptui: Only show password page if the private key is to be exported.
parent
9c52df83
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
main.c
dlls/cryptui/main.c
+6
-0
No files found.
dlls/cryptui/main.c
View file @
6209459b
...
...
@@ -5702,6 +5702,8 @@ static LRESULT CALLBACK export_format_dlg_proc(HWND hwnd, UINT msg, WPARAM wp,
break
;
case
PSN_WIZNEXT
:
{
BOOL
skipPasswordPage
=
TRUE
;
data
=
(
struct
ExportWizData
*
)
GetWindowLongPtrW
(
hwnd
,
DWLP_USER
);
if
(
IsDlgButtonChecked
(
hwnd
,
IDC_EXPORT_FORMAT_DER
))
data
->
contextInfo
.
dwExportFormat
=
...
...
@@ -5727,7 +5729,11 @@ static LRESULT CALLBACK export_format_dlg_proc(HWND hwnd, UINT msg, WPARAM wp,
data
->
contextInfo
.
fStrongEncryption
=
TRUE
;
if
(
IsDlgButtonChecked
(
hwnd
,
IDC_EXPORT_PFX_DELETE_PRIVATE_KEY
))
data
->
contextInfo
.
fExportPrivateKeys
=
TRUE
;
skipPasswordPage
=
FALSE
;
}
SetWindowLongPtrW
(
hwnd
,
DWLP_MSGRESULT
,
skipPasswordPage
?
IDD_EXPORT_FILE
:
0
);
ret
=
1
;
break
;
}
}
...
...
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