Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo corrected; help texts supplemented #239

Merged
merged 1 commit into from
Dec 22, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion security/pfSense-pkg-openvpn-client-export/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

PORTNAME= pfSense-pkg-openvpn-client-export
PORTVERSION= 1.3.15
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= security
MASTER_SITES= # empty
DISTFILES= # empty
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -463,21 +463,22 @@
$section->addInput(new Form_Checkbox(
'usepkcs11',
'PKCS#11 Certificate Storage',
'Use PKCS#11 storage instead of local files.',
'Use PKCS#11 storage device (cryptographic token, HSM, smart card) instead of local files.',
$cfg['usepkcs11']
));

$section->addInput(new Form_Input(
'pkcs11providers',
'PKCS#11 Providers',
'text',
$cfg['kcs11providers']
))->setHelp('Enter the path to the PKCS#11 providers.');
$cfg['pkcs11providers']
))->setHelp('Enter the client local path to the PKCS#11 provider(s) (DLL, module), multiple separated by a space character.');

$section->addInput(new Form_Input(
'pkcs11id',
'PKCS#11 ID'
));
'PKCS#11 ID',
'text'
))->setHelp('Enter the object\'s ID on the PKCS#11 device.');

$section->addInput(new Form_Checkbox(
'usetoken',
Expand Down