aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmux.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/osmux.c')
-rw-r--r--src/osmux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmux.c b/src/osmux.c
index c3b359b..d604be9 100644
--- a/src/osmux.c
+++ b/src/osmux.c
@@ -220,7 +220,7 @@ struct osmux_circuit {
static int osmux_batch_enqueue(struct msgb *msg, struct osmux_circuit *circuit,
uint8_t batch_factor)
{
- /* Too many messages per batch, discard it. The counter field of the
+ /* Validate amount of messages per batch. The counter field of the
* osmux header is just 3 bits long, so make sure it doesn't overflow.
*/
if (circuit->nmsgs >= batch_factor || circuit->nmsgs >= 8) {
@@ -230,7 +230,7 @@ static int osmux_batch_enqueue(struct msgb *msg, struct osmux_circuit *circuit,
if (rtph == NULL)
return -1;
- LOGP(DLMIB, LOGL_ERROR, "too many messages for this RTP "
+ LOGP(DLMIB, LOGL_DEBUG, "Batch is full for RTP "
"ssrc=%u\n", rtph->ssrc);
return -1;
}