aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimo Rothenpieler <timo@rothenpieler.org>2025-06-26 01:20:58 +0200
committerTimo Rothenpieler <timo@rothenpieler.org>2025-07-03 22:18:10 +0200
commit311742eb5a043f54b8e33c42bb9309f5e02c3c2c (patch)
tree06d28c790e120b9af72b4b48796c3dd710a43325
parent058b226313848f81018cfbe75551e3c0d0dbf080 (diff)
downloadffmpeg-311742eb5a043f54b8e33c42bb9309f5e02c3c2c.tar.gz
avformat/tls: use non protocol specific error message
-rw-r--r--libavformat/tls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/tls.c b/libavformat/tls.c
index da53835200..018b24cd48 100644
--- a/libavformat/tls.c
+++ b/libavformat/tls.c
@@ -137,7 +137,7 @@ int ff_tls_open_underlying(TLSShared *c, URLContext *parent, const char *uri, AV
parent->protocol_whitelist, parent->protocol_blacklist, parent);
if (c->is_dtls) {
if (ret < 0) {
- av_log(c, AV_LOG_ERROR, "WHIP: Failed to connect udp://%s:%d\n", c->underlying_host, port);
+ av_log(c, AV_LOG_ERROR, "Failed to open udp://%s:%d\n", c->underlying_host, port);
return ret;
}
/* Make the socket non-blocking, set to READ and WRITE mode after connected */