summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
Diffstat (limited to 'stream')
-rw-r--r--stream/stream.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/stream/stream.c b/stream/stream.c
index f50003660c..fe80028091 100644
--- a/stream/stream.c
+++ b/stream/stream.c
@@ -371,7 +371,9 @@ struct stream *stream_create(const char *url, int flags,
}
if (!s) {
- mp_err(log, "No stream found to handle url %s\n", url);
+ mp_err(log, "No protocol handler found to open URL %s\n", url);
+ mp_err(log, "The protocol is either unsupported, or was disabled "
+ "at compile-time.\n");
goto done;
}