From 29fc612417d20eef6738439922a38150ca5da7cb Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Mon, 27 Aug 2012 15:33:43 +0200 Subject: [PATCH] fix bug with srtp/zrtp switch --- Classes/LinphoneCoreSettingsStore.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Classes/LinphoneCoreSettingsStore.m b/Classes/LinphoneCoreSettingsStore.m index 328980635..7d7ea463d 100644 --- a/Classes/LinphoneCoreSettingsStore.m +++ b/Classes/LinphoneCoreSettingsStore.m @@ -173,10 +173,10 @@ extern void linphone_iphone_log_handler(int lev, const char *fmt, va_list args); LinphoneMediaEncryption menc=linphone_core_get_media_encryption(lc); const char *val; switch(menc){ - LinphoneMediaEncryptionSRTP: + case LinphoneMediaEncryptionSRTP: val="SRTP"; break; - LinphoneMediaEncryptionZRTP: + case LinphoneMediaEncryptionZRTP: val="ZRTP"; break; default: