[PC-BSD Commits] r7109 - in pcbsd: current/SysInstaller stable/SysInstaller
svn at pcbsd.org
svn at pcbsd.org
Fri Jul 2 10:00:21 PDT 2010
Author: kris
Date: 2010-07-02 10:00:21 -0700 (Fri, 02 Jul 2010)
New Revision: 7109
Modified:
pcbsd/current/SysInstaller/dialogFileSystem.cpp
pcbsd/stable/SysInstaller/dialogFileSystem.cpp
Log:
Fixed asking for passphrase when using ZFS with encryption
Modified: pcbsd/current/SysInstaller/dialogFileSystem.cpp
===================================================================
--- pcbsd/current/SysInstaller/dialogFileSystem.cpp 2010-07-02 16:10:09 UTC (rev 7108)
+++ pcbsd/current/SysInstaller/dialogFileSystem.cpp 2010-07-02 17:00:21 UTC (rev 7109)
@@ -114,7 +114,7 @@
// Function which toggles encryption enable / disable for ZFS
void dialogFileSystem::slotEncryptionChangedZFS()
{
- if(checkEncryption->isChecked() ) {
+ if(checkEncryptionZFS->isChecked() ) {
if( getEncPhrase() )
checkEncryption->setChecked(TRUE);
} else {
Modified: pcbsd/stable/SysInstaller/dialogFileSystem.cpp
===================================================================
--- pcbsd/stable/SysInstaller/dialogFileSystem.cpp 2010-07-02 16:10:09 UTC (rev 7108)
+++ pcbsd/stable/SysInstaller/dialogFileSystem.cpp 2010-07-02 17:00:21 UTC (rev 7109)
@@ -114,7 +114,7 @@
// Function which toggles encryption enable / disable for ZFS
void dialogFileSystem::slotEncryptionChangedZFS()
{
- if(checkEncryption->isChecked() ) {
+ if(checkEncryptionZFS->isChecked() ) {
if( getEncPhrase() )
checkEncryption->setChecked(TRUE);
} else {
More information about the Commits
mailing list