Mercurial > audlegacy-plugins
diff src/neon/neon.c @ 2124:b8da6a0b0da2
s/bmp_cfg_/aud_cfg_/g
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Wed, 24 Oct 2007 07:34:02 +0300 |
parents | 0d77ec0c71d4 |
children | 8a5231ff9c4f |
line wrap: on
line diff
--- a/src/neon/neon.c Wed Oct 24 07:32:18 2007 +0300 +++ b/src/neon/neon.c Wed Oct 24 07:34:02 2007 +0300 @@ -555,17 +555,17 @@ _ENTER; - db = bmp_cfg_db_open(); - if (FALSE == bmp_cfg_db_get_bool(db, NULL, "use_proxy", &use_proxy)) { + db = aud_cfg_db_open(); + if (FALSE == aud_cfg_db_get_bool(db, NULL, "use_proxy", &use_proxy)) { use_proxy = FALSE; } if (use_proxy) { - if (FALSE == bmp_cfg_db_get_string(db, NULL, "proxy_host", &proxy_host)) { + if (FALSE == aud_cfg_db_get_string(db, NULL, "proxy_host", &proxy_host)) { _ERROR("Could not read proxy host, disabling proxy use"); use_proxy = FALSE; } - if (FALSE == bmp_cfg_db_get_string(db, NULL, "proxy_port", &proxy_port_s)) { + if (FALSE == aud_cfg_db_get_string(db, NULL, "proxy_port", &proxy_port_s)) { _ERROR("Could not read proxy port, disabling proxy use"); use_proxy = FALSE; } @@ -578,7 +578,7 @@ use_proxy = FALSE; } } - bmp_cfg_db_close(db); + aud_cfg_db_close(db); handle->redircount = 0;