summaryrefslogtreecommitdiffstats
path: root/libmpdemux/cddb.c
diff options
context:
space:
mode:
authorreynaldo <reynaldo@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-04-22 05:12:10 +0000
committerreynaldo <reynaldo@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-04-22 05:12:10 +0000
commitc03b175452acfab485de9ad8aaf78f44cfdf3c91 (patch)
tree62d5b9fc960a9fbc2f01c11971d471bf8d1265a5 /libmpdemux/cddb.c
parent19935f69bd53ab35008d0a7359410609f882b9f7 (diff)
downloadmpv-c03b175452acfab485de9ad8aaf78f44cfdf3c91.tar.bz2
mpv-c03b175452acfab485de9ad8aaf78f44cfdf3c91.tar.xz
Part3 of Otvos Attila's oattila AT chello-hu mp_msg changes, with lots of modifications as usual
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18177 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/cddb.c')
-rw-r--r--libmpdemux/cddb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpdemux/cddb.c b/libmpdemux/cddb.c
index dbeaba8b9d..01b3b2c22e 100644
--- a/libmpdemux/cddb.c
+++ b/libmpdemux/cddb.c
@@ -282,7 +282,7 @@ cddb_http_request(char *command, int (*reply_parser)(HTTP_header_t*,cddb_data_t*
if( reply_parser==NULL || command==NULL || cddb_data==NULL ) return -1;
sprintf( request, "http://%s/~cddb/cddb.cgi?cmd=%s%s&proto=%d", cddb_data->freedb_server, command, cddb_data->cddb_hello, cddb_data->freedb_proto_level );
- printf("Request[%s]\n", request );
+ mp_msg(MSGT_OPEN, MSGL_INFO,"Request[%s]\n", request );
url = url_new(request);
if( url==NULL ) {
@@ -303,7 +303,7 @@ cddb_http_request(char *command, int (*reply_parser)(HTTP_header_t*,cddb_data_t*
}
http_debug_hdr(http_hdr);
- printf("body=[%s]\n", http_hdr->body );
+ mp_msg(MSGT_OPEN, MSGL_INFO,"body=[%s]\n", http_hdr->body );
switch(http_hdr->status_code) {
case 200: