From 80799fa84eb4330083e4de20b87f97beea7d6ba7 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 25 Jan 2009 16:00:51 +0100 Subject: use config_get_string() instead of config_get_param() config_get_string() is easier to use than config_get_param() because it unpacks the config_param struct. --- src/path.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/path.c') diff --git a/src/path.c b/src/path.c index 3b9b1eff6..01480bee4 100644 --- a/src/path.c +++ b/src/path.c @@ -66,13 +66,10 @@ const char *path_get_fs_charset(void) void path_global_init(void) { - struct config_param *fs_charset_param = - config_get_param(CONF_FS_CHARSET); const char *charset = NULL; - if (fs_charset_param) { - charset = fs_charset_param->value; - } else { + charset = config_get_string(CONF_FS_CHARSET, NULL); + if (charset == NULL) { const gchar **encodings; g_get_filename_charsets(&encodings); -- cgit v1.2.3