Fix a small bogon with a boolean yes/no question check.
This commit is contained in:
parent
0593938b26
commit
8ad4728c5d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=66337
@ -576,8 +576,8 @@ installStandard(dialogMenuItem *self)
|
||||
if (!msgYesNo("Do you want to configure this machine as an NFS client?"))
|
||||
variable_set2("nfs_client_enable", "YES", 1);
|
||||
|
||||
if (msgYesNo("Do you want to select a default security profile for\n"
|
||||
"this host (\"medium\" security being the default)?"))
|
||||
if (!msgYesNo("Do you want to select a default security profile for\n"
|
||||
"this host (select No for \"medium\" security)?"))
|
||||
configSecurityProfile(self);
|
||||
else
|
||||
configSecurityModerate(self);
|
||||
|
@ -576,8 +576,8 @@ installStandard(dialogMenuItem *self)
|
||||
if (!msgYesNo("Do you want to configure this machine as an NFS client?"))
|
||||
variable_set2("nfs_client_enable", "YES", 1);
|
||||
|
||||
if (msgYesNo("Do you want to select a default security profile for\n"
|
||||
"this host (\"medium\" security being the default)?"))
|
||||
if (!msgYesNo("Do you want to select a default security profile for\n"
|
||||
"this host (select No for \"medium\" security)?"))
|
||||
configSecurityProfile(self);
|
||||
else
|
||||
configSecurityModerate(self);
|
||||
|
@ -576,8 +576,8 @@ installStandard(dialogMenuItem *self)
|
||||
if (!msgYesNo("Do you want to configure this machine as an NFS client?"))
|
||||
variable_set2("nfs_client_enable", "YES", 1);
|
||||
|
||||
if (msgYesNo("Do you want to select a default security profile for\n"
|
||||
"this host (\"medium\" security being the default)?"))
|
||||
if (!msgYesNo("Do you want to select a default security profile for\n"
|
||||
"this host (select No for \"medium\" security)?"))
|
||||
configSecurityProfile(self);
|
||||
else
|
||||
configSecurityModerate(self);
|
||||
|
Loading…
Reference in New Issue
Block a user