From 6b857905bfd09bc5f856b72db6fb17d57092c5f9 Mon Sep 17 00:00:00 2001 From: Andreas Eversberg Date: Fri, 13 Dec 2013 15:50:56 +0100 Subject: [PATCH] Minor fix for GSM HR codec negotiation: Add missing 'break'. --- gsm.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/gsm.cpp b/gsm.cpp index 6d98bd0..6063a9b 100644 --- a/gsm.cpp +++ b/gsm.cpp @@ -581,6 +581,7 @@ void Pgsm::modify_lchan(int media_type) add_trace("speech", "version", "Half Rate given"); mode->lchan_mode = 0x01; /* GSM V1 */ mode->lchan_type = 0x03; /* TCH/H */ + break; default: add_trace("speech", "version", "Full Rate given"); mode->lchan_mode = 0x01; /* GSM V1 */ -- 2.13.6