From: Andreas Eversberg Date: Fri, 13 Dec 2013 14:50:56 +0000 (+0100) Subject: Minor fix for GSM HR codec negotiation: Add missing 'break'. X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=commitdiff_plain;h=6b857905bfd09bc5f856b72db6fb17d57092c5f9 Minor fix for GSM HR codec negotiation: Add missing 'break'. --- 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 */