summaryrefslogtreecommitdiff
path: root/third_party/srtp/crypto/kernel/err.c
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/srtp/crypto/kernel/err.c')
-rw-r--r--third_party/srtp/crypto/kernel/err.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/third_party/srtp/crypto/kernel/err.c b/third_party/srtp/crypto/kernel/err.c
index 4a3a8589..fcd90784 100644
--- a/third_party/srtp/crypto/kernel/err.c
+++ b/third_party/srtp/crypto/kernel/err.c
@@ -42,6 +42,10 @@
*
*/
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
#include "err.h"
#ifdef ERR_REPORTING_SYSLOG
@@ -57,7 +61,7 @@ err_reporting_level_t err_level = err_level_none;
#ifdef SRTP_KERNEL_LINUX
err_status_t
-err_reporting_init(char *ident) {
+err_reporting_init(const char *ident) {
return err_status_ok;
}
@@ -69,7 +73,7 @@ err_reporting_init(char *ident) {
static FILE *err_file = NULL;
err_status_t
-err_reporting_init(char *ident) {
+err_reporting_init(const char *ident) {
#ifdef ERR_REPORTING_SYSLOG
openlog(ident, LOG_PID, LOG_AUTHPRIV);
#endif
@@ -92,7 +96,7 @@ err_reporting_init(char *ident) {
}
void
-err_report(int priority, char *format, ...) {
+err_report(int priority, const char *format, ...) {
va_list args;
if (priority <= err_level) {