]> code.citadel.org Git - citadel.git/blobdiff - citadel/serv_upgrade.c
* added a comment infront of the svn modifieable returns. Now it will be me listed...
[citadel.git] / citadel / serv_upgrade.c
index db92fbf2de04e9e9c1c29a46bc934c3d76208758..1c3012a512b1159d1b4b4646765f154b35066d1c 100644 (file)
@@ -217,6 +217,9 @@ void check_server_upgrades(void) {
        if ((CitControl.version > 000) && (CitControl.version < 608)) {
                convert_ctdluid_to_minusone();
        }
+       if ((CitControl.version > 000) && (CitControl.version < 659)) {
+               rebuild_euid_index();
+       }
 
        CitControl.version = REV_LEVEL;
        put_control();
@@ -226,6 +229,7 @@ void check_server_upgrades(void) {
 char *serv_upgrade_init(void)
 {
        check_server_upgrades();
-       rebuild_euid_index();   /* FIXME */
+
+       /* return our Subversion id for the Log */
        return "$Id$";
 }