diff options
author | Thibaut Mattern <tmattern@users.sourceforge.net> | 2002-11-16 12:03:59 +0000 |
---|---|---|
committer | Thibaut Mattern <tmattern@users.sourceforge.net> | 2002-11-16 12:03:59 +0000 |
commit | f935029b08b09188e7fbb0f603cd92f25570e473 (patch) | |
tree | 2bb41f0088306ef37914bd8d73dae2ab493cf0a6 | |
parent | 34789cd33f958ac527315a78dc87b7a64f5a6f20 (diff) | |
download | xine-lib-f935029b08b09188e7fbb0f603cd92f25570e473.tar.gz xine-lib-f935029b08b09188e7fbb0f603cd92f25570e473.tar.bz2 |
Sometimes there is no space after ':'
CVS patchset: 3271
CVS date: 2002/11/16 12:03:59
-rw-r--r-- | src/input/input_http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/input_http.c b/src/input/input_http.c index 7f2656e02..7e2043741 100644 --- a/src/input/input_http.c +++ b/src/input/input_http.c @@ -471,7 +471,7 @@ static int read_shoutcast_header(http_input_plugin_t *this) { = strdup (this->buf + 9 + (*(this->buf + 9) == ' ')); } - if (sscanf(this->buf, "icy-metaint: %d", &this->shoutcast_metaint) == 1) { + if (sscanf(this->buf, "icy-metaint:%d", &this->shoutcast_metaint) == 1) { #ifdef LOG printf("input_http: shoutcast_metaint: %d\n", this->shoutcast_metaint); #endif |