summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
Diffstat (limited to 'stream')
-rw-r--r--stream/stream.c2
1 files changed, 1 insertions, 1 deletions
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;