diff options
| -rw-r--r-- | lib/vtls/polarssl.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/lib/vtls/polarssl.c b/lib/vtls/polarssl.c index e03135a5b..705805ac7 100644 --- a/lib/vtls/polarssl.c +++ b/lib/vtls/polarssl.c @@ -104,7 +104,7 @@ static int entropy_func_mutex(void *data, unsigned char *output, size_t len)  #undef POLARSSL_DEBUG  #ifdef POLARSSL_DEBUG -static void polarssl_debug(void *context, int level, char *line) +static void polarssl_debug(void *context, int level, const char *line)  {    struct SessionHandle *data = NULL; @@ -113,7 +113,8 @@ static void polarssl_debug(void *context, int level, char *line)    data = (struct SessionHandle *)context; -  infof(data, "%s\n", line); +  infof(data, "%s", line); +  (void) level;  }  #else  #endif | 
