summaryrefslogtreecommitdiff
path: root/src/input/input_http.c
diff options
context:
space:
mode:
authorFrantišek Dvořák <valtri@users.sourceforge.net>2005-02-03 07:19:03 +0000
committerFrantišek Dvořák <valtri@users.sourceforge.net>2005-02-03 07:19:03 +0000
commit89c1c59fb83bc1d4598543b1bcaee5b69776b421 (patch)
tree8f8f88de29b540e4f21ed63a243c12288571fbef /src/input/input_http.c
parent00f8f557ae278bb0aa4dee3cb664e154d32a7ba3 (diff)
downloadxine-lib-89c1c59fb83bc1d4598543b1bcaee5b69776b421.tar.gz
xine-lib-89c1c59fb83bc1d4598543b1bcaee5b69776b421.tar.bz2
**BUGFIX**
Fixed build on solaris: - use libresolv in hstrerror check - replace PRIiMAX and PRIXMAX by PRIdMAX and PRIxMAX Removed timezone struct for MinGW from public os_types.h, update header comment. Fixed build musepack library on some platforms using xine types. Thanks to Niki W. Waibel for reporting and testing. CVS patchset: 7378 CVS date: 2005/02/03 07:19:03
Diffstat (limited to 'src/input/input_http.c')
-rw-r--r--src/input/input_http.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/input_http.c b/src/input/input_http.c
index 77967a774..e82c01d49 100644
--- a/src/input/input_http.c
+++ b/src/input/input_http.c
@@ -19,7 +19,7 @@
*
* input plugin for http network streams
*
- * $Id: input_http.c,v 1.106 2005/01/17 19:27:51 tmattern Exp $
+ * $Id: input_http.c,v 1.107 2005/02/03 07:19:06 valtri Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -544,7 +544,7 @@ static off_t http_plugin_seek(input_plugin_t *this_gen, off_t offset, int origin
this->curpos = offset;
else
xprintf(this->stream->xine, XINE_VERBOSITY_DEBUG,
- "http: cannot seek back! (%" PRIiMAX " > %" PRIiMAX ")\n",
+ "http: cannot seek back! (%" PRIdMAX " > %" PRIdMAX ")\n",
(intmax_t)this->curpos, (intmax_t)offset);
} else {
@@ -829,7 +829,7 @@ static int http_plugin_open (input_plugin_t *this_gen ) {
if (sscanf(this->buf, "Content-Length: %" SCNdMAX , &contentlength) == 1) {
xine_log (this->stream->xine, XINE_LOG_MSG,
- _("input_http: content length = %" PRIiMAX " bytes\n"),
+ _("input_http: content length = %" PRIdMAX " bytes\n"),
contentlength);
this->contentlength = (off_t)contentlength;
}