From 15f5b18e58199de0136a6bacbde1646ea8e3354d Mon Sep 17 00:00:00 2001 From: wm4 <wm4@nowhere> Date: Wed, 5 Jun 2013 02:00:13 +0200 Subject: [PATCH] stream: misleading statement --- stream/stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stream/stream.c b/stream/stream.c index 9de53aba52..9ea758fda7 100644 --- a/stream/stream.c +++ b/stream/stream.c @@ -194,7 +194,7 @@ static stream_t *open_stream_plugin(const stream_info_t *sinfo, if (s->type <= -2) mp_msg(MSGT_OPEN, MSGL_WARN, "Warning streams need a type !!!!\n"); - if (s->flags & MP_STREAM_SEEK && !s->seek) + if (!s->seek) s->flags &= ~MP_STREAM_SEEK; if (s->seek && !(s->flags & MP_STREAM_SEEK)) s->flags |= MP_STREAM_SEEK;