* add missing entry in list of environment variables to fix off by one making the...
authorWilfried Goesgens <dothebart@citadel.org>
Sun, 5 Sep 2010 17:59:24 +0000 (19:59 +0200)
committerWilfried Goesgens <dothebart@citadel.org>
Sun, 5 Sep 2010 17:59:24 +0000 (19:59 +0200)
 Thanks Samjam to give the missing hint to track this bug.

citadel/utils/setup.c

index 99bba3eefe3e64a36dbb741a1733238fe43f7556..51d53fe59871fade8ac43510088d4224536291d2 100644 (file)
@@ -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;