X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=citadel%2Fmodules%2Fupgrade%2Fserv_upgrade.c;fp=citadel%2Fmodules%2Fupgrade%2Fserv_upgrade.c;h=249c825053524575e3bf5b990a442bf9d88fc111;hp=53f737b676d0b6fbf8c3277303747d23de17deb1;hb=cdb873062246d255bb3813d4443bcaa0992e03ff;hpb=d1dcc57fd3286c9e38b7f15eb2fb047279232628 diff --git a/citadel/modules/upgrade/serv_upgrade.c b/citadel/modules/upgrade/serv_upgrade.c index 53f737b67..249c82505 100644 --- a/citadel/modules/upgrade/serv_upgrade.c +++ b/citadel/modules/upgrade/serv_upgrade.c @@ -1,7 +1,7 @@ /* * Transparently handle the upgrading of server data formats. * - * Copyright (c) 1987-2015 by the citadel.org team + * Copyright (c) 1987-2016 by the citadel.org team * * This program is open source software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version 3. @@ -256,10 +256,7 @@ void update_config(void) { */ void check_server_upgrades(void) { - syslog(LOG_INFO, "Existing database version on disk is %d.%02d", - (CtdlGetConfigInt("MM_hosted_upgrade_level") / 100), - (CtdlGetConfigInt("MM_hosted_upgrade_level") % 100) - ); + syslog(LOG_INFO, "Existing database version on disk is %d", CtdlGetConfigInt("MM_hosted_upgrade_level")); if (CtdlGetConfigInt("MM_hosted_upgrade_level") < REV_LEVEL) { syslog(LOG_WARNING,