From ffc2f73816d9331db37fbd773b65b7ec17ce4780 Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Wed, 23 Jun 2004 10:46:17 +0000 Subject: update to glib 2.x --- mixlib/mix_config.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mixlib/mix_config.c') diff --git a/mixlib/mix_config.c b/mixlib/mix_config.c index cba9c80..c62d527 100644 --- a/mixlib/mix_config.c +++ b/mixlib/mix_config.c @@ -1,7 +1,7 @@ /* -*-c-*- -------------- mix_config.c : * Implementation of the functions declared in mix_config.h * ------------------------------------------------------------------ - * $Id: mix_config.c,v 1.10 2004/06/07 12:18:22 jao Exp $ + * $Id: mix_config.c,v 1.11 2004/06/23 10:46:17 jao Exp $ * ------------------------------------------------------------------ * Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc. * @@ -94,7 +94,7 @@ mix_config_new (const gchar *dirname, const gchar *filename) } autosave = mix_config_get (result, AUTOSAVE_KEY_); - result->autosave = autosave && !g_strcasecmp (autosave, AUTOSAVE_YES_); + result->autosave = autosave && !g_ascii_strcasecmp (autosave, AUTOSAVE_YES_); return result; } @@ -267,7 +267,7 @@ mix_config_set_history_file (mix_config_t *config, const gchar *path) } else { - gchar *base = g_dirname (config->filename); + gchar *base = g_path_get_dirname (config->filename); gchar *hf = g_strconcat (base, G_DIR_SEPARATOR_S, path, NULL); mix_config_update (config, HISTORY_KEY_, hf); g_free (hf); -- cgit v1.2.3