From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.ffmpeg.org (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTPS id AD5DC4FDF0 for ; Wed, 2 Jul 2025 16:59:42 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTP id 8702668D144; Wed, 2 Jul 2025 19:57:30 +0300 (EEST) Received: from btbn.de (btbn.de [144.76.60.213]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTPS id 2E87268D2EF for ; Wed, 2 Jul 2025 19:57:10 +0300 (EEST) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id 260A627FFCD3C; Wed, 02 Jul 2025 18:57:06 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rothenpieler.org; s=mail; t=1751475426; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=RUvGYYlf+cEXCiN1k4gRZXgmboZAx+fFmgbDfX8NPoA=; b=sJ/nOx4OnDvf/dg8BSx5BGnLGyrvgBQlVD866RH+MSIGAQc97RX22oY6y380w6XFE78ybh kVfgXxnjGvhnWRbkNaTefGEF+A1BtaSYLqiOcIvkyi4TzJ0mqjZpLKeEl+ia49nT12Tas2 UluTn27il/s34DmhQpbJl6xXtIbv+5/D70AAVJdLTFcaRgtdWrsHKlqd4kugFJqovEnxZ4 zNxqSRaxK6HcRx62bRXEb36jGyCu9HZX3FWMaYRGYwqEe2mRfy+bGqCyStN/QMBhbib2pe vztMv+8++V+IB9yC4kRKj3f4eDMBY1n5isBxpHU0ffUK4wSxsVTp470jEME4Bg== From: Timo Rothenpieler To: ffmpeg-devel@ffmpeg.org Date: Wed, 2 Jul 2025 18:56:34 +0200 Message-ID: <20250702165655.1325-7-timo@rothenpieler.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250702165655.1325-1-timo@rothenpieler.org> References: <20250702165655.1325-1-timo@rothenpieler.org> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 06/18] avformat/tls: use non protocol specific error message X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Timo Rothenpieler Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --- libavformat/tls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.49.0 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".