summaryrefslogtreecommitdiff
path: root/third_party/srtp/pjlib/srtp_err.c
diff options
context:
space:
mode:
authorNanang Izzuddin <nanang@teluu.com>2016-03-15 03:57:39 +0000
committerNanang Izzuddin <nanang@teluu.com>2016-03-15 03:57:39 +0000
commit26d978a556ae9099f6610ace9834991636e4a71b (patch)
treed8789c5afbe3920f3f7ef46ad73aa34f48173591 /third_party/srtp/pjlib/srtp_err.c
parent8b9358503884ec1901d807ff56c2fc588be896a2 (diff)
Close #1847: Upgraded libsrtp version to 1.5.4 and added support for AES-CM-256 crypto.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@5261 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'third_party/srtp/pjlib/srtp_err.c')
-rw-r--r--third_party/srtp/pjlib/srtp_err.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/third_party/srtp/pjlib/srtp_err.c b/third_party/srtp/pjlib/srtp_err.c
index 8a92c56b..bd60ca17 100644
--- a/third_party/srtp/pjlib/srtp_err.c
+++ b/third_party/srtp/pjlib/srtp_err.c
@@ -24,12 +24,13 @@
err_reporting_level_t err_level = err_level_none;
err_status_t
-err_reporting_init(char *ident) {
+err_reporting_init(const char *ident) {
+ PJ_UNUSED_ARG(ident);
return err_status_ok;
}
void
-err_report(int priority, char *format, ...) {
+err_report(int priority, const char *format, ...) {
va_list args;
#if PJ_LOG_MAX_LEVEL >= 1