billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=73c9e827772cc68a9d510d7d89d55308da518e1d
commit 73c9e827772cc68a9d510d7d89d55308da518e1d Author: Jean Guyomarc'h <[email protected]> Date: Tue Mar 17 20:20:52 2015 +0100 config: typo in config upgrade names Summary: If CONF_VER was 4, config should be upgraded to 5. Reviewers: billiob Differential Revision: https://phab.enlightenment.org/D2179 --- src/bin/config.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/config.c b/src/bin/config.c index b98dce5..aabdfee 100644 --- a/src/bin/config.c +++ b/src/bin/config.c @@ -292,13 +292,13 @@ _config_upgrade_to_v2(Config *config) config->keys = eina_list_append(config->keys, kb) static void -_config_upgrade_to_v4(Config *config) +_config_upgrade_to_v5(Config *config) { Config_Keys *kb; ADD_KB("F11", 0, 0, 0, 0, "win_fullscreen"); - config->version = 4; + config->version = 5; } static void @@ -474,7 +474,7 @@ config_load(const char *key) config->gravatar = EINA_TRUE; /*pass through*/ case 4: - _config_upgrade_to_v4(config); + _config_upgrade_to_v5(config); /*pass through*/ case CONF_VER: /* 5 */ config->version = CONF_VER; --
