summaryrefslogtreecommitdiffstats
path: root/release/sysinstall
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>2000-02-19 12:42:03 +0000
committerjkh <jkh@FreeBSD.org>2000-02-19 12:42:03 +0000
commitd496b164068fec0941bfd6ecc3c3124e933b5db7 (patch)
tree6123a96cce3afc5d2bb4c4491653f424bf371397 /release/sysinstall
parent545367f3927d9052cdeb31977bf61531c6fafc2d (diff)
downloadFreeBSD-src-d496b164068fec0941bfd6ecc3c3124e933b5db7.zip
FreeBSD-src-d496b164068fec0941bfd6ecc3c3124e933b5db7.tar.gz
Whoops, forgot to delete the ! operator in the reversed conditional
for anonftp. Fix.
Diffstat (limited to 'release/sysinstall')
-rw-r--r--release/sysinstall/install.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/sysinstall/install.c b/release/sysinstall/install.c
index 4f8cf72..6373b69 100644
--- a/release/sysinstall/install.c
+++ b/release/sysinstall/install.c
@@ -541,7 +541,7 @@ nodisks:
"between interfaces)?"))
variable_set2("gateway_enable", "YES", 1);
- if (!msgYesNo("Do you want to grant only normal users FTP access to this\n"
+ if (msgYesNo("Do you want to grant only normal users FTP access to this\n"
"host (e.g. no anonymous FTP connections)?"))
configAnonFTP(self);
OpenPOWER on IntegriCloud