2 * Copyright (C) 2003-2010 The Music Player Daemon Project
3 * http://www.musicpd.org
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28 my_log_func(G_GNUC_UNUSED
const gchar
*log_domain
,
29 GLogLevelFlags log_level
,
30 const gchar
*message
, G_GNUC_UNUSED gpointer user_data
)
32 if (log_level
> G_LOG_LEVEL_WARNING
)
35 g_printerr("%s\n", message
);
38 int main(int argc
, char **argv
)
40 const char *path
, *name
, *value
;
46 g_printerr("Usage: read_conf FILE SETTING\n");
53 g_log_set_default_handler(my_log_func
, NULL
);
56 success
= config_read_file(path
, &error
);
58 g_printerr("%s:", error
->message
);
63 value
= config_get_string(name
, NULL
);
65 g_print("%s\n", value
);
68 g_printerr("No such setting: %s\n", name
);
72 config_global_finish();