From ccdea5fd06adce8688ccfbab641c11c79407a16b Mon Sep 17 00:00:00 2001 From: Donat Zenichev Date: Mon, 13 Jan 2025 09:25:10 +0100 Subject: [PATCH] MT#61368 Fix typos in `monologue_offer_answer()` Fix typos introduced by: 73ec8df9396 Change-Id: Ib6aa32fb9d3745d9761f71cc8d1a01c85b69caf9 --- daemon/call.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon/call.c b/daemon/call.c index e3b1101e9..97369958e 100644 --- a/daemon/call.c +++ b/daemon/call.c @@ -3048,7 +3048,7 @@ int monologue_offer_answer(struct call_monologue *monologues[2], sdp_streams_q * assert(sp->index > 0); /** - * for an offer, a sequence in which tsender_media->media_subscriptions.headhe medias are gotten by index, matters. + * for an offer, a sequence in which sender_media->media_subscriptions.head medias are gotten by index, matters. * This affects later the sequencing of medias, e.g. for subscribe requests. */ @@ -3088,7 +3088,7 @@ int monologue_offer_answer(struct call_monologue *monologues[2], sdp_streams_q * receiver_media = r_media; } if (!receiver_media) { - ilog(LOG_WARNING, "No matching media (index: %d) for answer using subscription, just use an index.", sp->index); + ilog(LOG_WARNING, "No matching media (index: %d) using subscription, just use an index.", sp->index); receiver_media = __get_media(receiver_ml, sp, flags, sp->index - medias_offset); } receiver_media->media_sdp_id = sp->media_sdp_id;