Whoops, forgot to delete the ! operator in the reversed conditional

for anonftp.  Fix.
This commit is contained in:
Jordan K. Hubbard 2000-02-19 12:42:03 +00:00
parent 6874d62958
commit 241d4c9361
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=57334
3 changed files with 3 additions and 3 deletions

View File

@ -541,7 +541,7 @@ installStandard(dialogMenuItem *self)
"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);

View File

@ -541,7 +541,7 @@ installStandard(dialogMenuItem *self)
"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);

View File

@ -541,7 +541,7 @@ installStandard(dialogMenuItem *self)
"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);