summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-11-07 19:25:20 +0100
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-11-07 19:25:20 +0100
commit0f456cd4199a0d3337df20d5c2bf1aa3ac1d1e34 (patch)
treeb48bd894f182fdbbeb105ee96993241bb827a81e /plugins
parentf3d55f95daf66f208ef32a28b1ecb68a04918869 (diff)
fixed undefined symbol in cdda plugin
Diffstat (limited to 'plugins')
-rw-r--r--plugins/cdda/cdda.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/cdda/cdda.c b/plugins/cdda/cdda.c
index b41d0420..cd9f0659 100644
--- a/plugins/cdda/cdda.c
+++ b/plugins/cdda/cdda.c
@@ -245,7 +245,7 @@ resolve_disc (CdIo_t *cdio)
if (!proto_cddb)
{
cddb_http_enable (conn);
- if (conf_get_int ("network.proxy"))
+ if (deadbeef->conf_get_int ("network.proxy", 0))
{
cddb_set_server_port(conn, deadbeef->conf_get_int ("network.proxy.port", 8080));
cddb_set_server_name(conn, deadbeef->conf_get_str ("network.proxy.address", ""));