From 9fafa1e33e320173e92eec6dc686bcb00fca8046 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Sun, 15 Nov 2015 09:09:46 -0500 Subject: [PATCH] Removed using_web_installer variable , we do not check it anymore --- citadel/utils/setup.c | 6 ------ 1 file changed, 6 deletions(-) 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)) { -- 2.30.2