fix compile issue

This commit is contained in:
Simon Morlat 2015-02-05 01:37:29 +01:00
parent 2003ca847a
commit 06fb5da198

View file

@ -21,6 +21,9 @@ MediaEncryptionResponse::MediaEncryptionResponse(LinphoneCore *core) : Response(
case LinphoneMediaEncryptionZRTP:
ost << "zrtp\n";
break;
case LinphoneMediaEncryptionDTLS:
ost << "DTLS\n";
break;
}
setBody(ost.str().c_str());
}