From: Art Cancro Date: Sun, 15 Nov 2015 14:09:46 +0000 (-0500) Subject: Removed using_web_installer variable , we do not check it anymore X-Git-Tag: Release_902~140 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;ds=sidebyside;h=9fafa1e33e320173e92eec6dc686bcb00fca8046;p=citadel.git Removed using_web_installer variable , we do not check it anymore --- diff --git a/citadel/utils/setup.c b/citadel/utils/setup.c index 7e8ae7aa0..0d6d7c032 100644 --- a/citadel/utils/setup.c +++ b/citadel/utils/setup.c @@ -93,7 +93,6 @@ const char *EnvNames [eMaxQuestions] = { }; int setup_type = (-1); -int using_web_installer = 0; int enable_home = 1; char admin_name[SIZ]; char admin_pass[SIZ]; @@ -1089,11 +1088,6 @@ int main(int argc, char *argv[]) /* set an invalid setup type */ setup_type = (-1); - /* Check to see if we're running the web installer */ - if (getenv("CITADEL_INSTALLER") != NULL) { - using_web_installer = 1; - } - /* parse command line args */ for (a = 0; a < argc; ++a) { if (!strncmp(argv[a], "-u", 2)) {