diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 2000-09-25 07:15:19 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 2000-09-25 07:15:19 +0000 |
commit | 8ad4728c5d21e9108611e2aa20ff76f9f2507eda (patch) | |
tree | 815cab495a39e8f818c8cbeeff4b26c3f9110eac /release/sysinstall | |
parent | 0593938b26d16ac79c5c2965bf75c4e989ff49d1 (diff) |
Fix a small bogon with a boolean yes/no question check.
Notes
Notes:
svn path=/head/; revision=66337
Diffstat (limited to 'release/sysinstall')
-rw-r--r-- | release/sysinstall/install.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/release/sysinstall/install.c b/release/sysinstall/install.c index 14232c75289a..252c8ac4776b 100644 --- a/release/sysinstall/install.c +++ b/release/sysinstall/install.c @@ -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); |