From: Wilfried Goesgens Date: Sun, 5 Sep 2010 17:59:24 +0000 (+0200) Subject: * add missing entry in list of environment variables to fix off by one making the... X-Git-Tag: v8.01~746 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=8f8f4af17d7ffd6e8cb36ae52ad4923b9006d97f;p=citadel.git * add missing entry in list of environment variables to fix off by one making the .debs put settings into wrong citadel setting. Thanks Samjam to give the missing hint to track this bug. --- diff --git a/citadel/utils/setup.c b/citadel/utils/setup.c index 99bba3eef..51d53fe59 100644 --- a/citadel/utils/setup.c +++ b/citadel/utils/setup.c @@ -71,6 +71,7 @@ typedef enum _SetupStep { ///"CREATE_XINETD_ENTRY"; const char *EnvNames [eMaxQuestions] = { + "HOME_DIRECTORY", "SYSADMIN_NAME", "SYSADMIN_PW", "CITADEL_UID", @@ -82,7 +83,6 @@ const char *EnvNames [eMaxQuestions] = { "LDAP_BASE_DN", "LDAP_BIND_DN", "LDAP_BIND_PW" -"" }; int setup_type;