Fix a small bogon with a boolean yes/no question check.

This commit is contained in:
Jordan K. Hubbard 2000-09-25 07:15:19 +00:00
parent 0593938b26
commit 8ad4728c5d
3 changed files with 6 additions and 6 deletions

View File

@ -576,8 +576,8 @@ nodisks:
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);

View File

@ -576,8 +576,8 @@ nodisks:
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);

View File

@ -576,8 +576,8 @@ nodisks:
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);